@charset "utf-8";
@import "base.css";
@import "font-awesome/css/font-awesome.min.css";

img {
    max-width: 100%;
}

a:focus {
    text-decoration: none;
}

body {
    line-height: 1.5;
    color: #292828;
    font-family: 'Noto Sans JP', sans-serif;
    padding-top: 50px;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

[contentEditable=true]:empty:not(:focus):before {
    content: attr(data-placeholder);
    color: #c8c8c8;
    user-select: none;
    pointer-events: none;
}

.form-group {
    margin: 0;
}

.wrap-input {
    position: relative;
}

.input {
    display: block;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    min-height: 40px;
    position: relative;
    z-index: 2;
    color: #323232;
    padding: 0px 12px;
}

.input:hover,
.input.has-text {
    /* border-bottom: solid 2px #c8c8c8; */
}

.input.has-text+span {
    font-size: 13px;
    top: -23px;
    color: #777;
}

.input:focus {
    /* border-bottom: solid 2px #e05146; */
}

.input:focus+span {
    font-size: 13px;
    top: -23px;
    color: #e05146;
    font-family: 'Noto Sans JP', sans-serif;
}

.input.error {
    /* border-bottom: solid 2px #ff6450; */
}

.input.error+span {
    font-size: 13px;
    top: -23px;
    color: #DE5947;
}

.wrap-input .view_password {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}

.error-message {
    color: #DE5947;
    display: inline-block;
    font-size: 10px;
}

.select {
    position: relative;
}

.select .selected {
    display: block;
    color: #5F5F5F;
    font-size: 12px;
    line-height: 32px;
    border: solid 1px #5F5F5F;
    border-radius: 3px;
    text-decoration: none;
    padding: 0 20px 0 10px;
    position: relative;
}

.select .selected .fa {
    font-size: 20px;
    color: #777;
    position: absolute;
    top: calc(50% - 10px);
    right: 0;
    width: 20px;
    text-align: center;
}

.select .selected:hover {
    border: solid 1px #777;
}

.select .selected.has-text {
    color: inherit;
}

.select .selected.active {
    border: solid 1px #ff6450;
}

.select .selected.active:after {
    color: #ff6450;
}

.select .selected.active+.option {
    display: block;
    max-width: 100%;
}

/* #create_video_data .select .option {
    top: -240px;
} */

.select .option {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    width: auto;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 10;
}

.select .option li {
    font-size: 14px;
    line-height: 34px;
    padding: 0 5px;
    cursor: pointer;
    user-select: none;
}

.select .option li.active,
.select .option li:hover {
    background: #FFECDE;
}

.select .option label.opt-group {
    width: 100%;
    font-size: 12px;
    color: #6A7E94;
    line-height: 17px;
    border-bottom: 1px solid #9CA9B7;
    padding: 10px 10px 5px;
}

.wrap-edit {
    display: block;
    position: relative;
}

.form-control,
.wrap-edit .input-edit {
    display: block;
    width: 100%;
    border: solid 1px #c8c8c8;
    border-radius: 3px;
    font-size: 12px;
    padding: 10px 35px 7px 8px;
    font-family: 'Noto Sans JP', sans-serif;
}

.form-control {
    padding: 9px 10px 8px;
}

textarea.form-control {
    resize: none;
    padding: 8px;
    line-height: 1.5;
}

.form-control:hover,
.wrap-edit .input-edit:hover {
    border: solid 1px #777;
}

.wrap-edit .input-edit:hover+.max-character {
    background: #777;
}

.form-control:focus,
.wrap-edit .input-edit:focus {
    border: solid 1px #ff6450;
    box-shadow: none;
}

.wrap-edit .input-edit:focus+.max-character {
    background: #ff6450;
}

.wrap-edit .input-edit.error {
    border: solid 1px #ff6450;
}

.wrap-edit .input-edit.error+.max-character {
    background: #ff6450;
}

.wrap-edit .input-edit::selection,
.wrap-edit .input-edit *::selection {
    background: rgba(224, 22, 30, .1);
    color: inherit;
}

.wrap-edit .max-character {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    width: 20px;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    background: #c8c8c8;
    text-align: center;
    border-radius: 0 0 4px 0;
}

.link,
.link:focus {
    display: inline-block;
    color: #777;
    border-bottom: dashed 1px #d8d8d8;
    text-decoration: none;
}

.link:hover {
    color: #e05146;
    border-bottom: solid 1px transparent;
    text-decoration: none;
}

.btn-red {
    display: inline-block;
    text-align: center;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 3;
    border-radius: 4px;
    background: #DE5947;
    border: solid 1px #DE5947;
}

.btn-red:hover,
.btn-red:focus {
    background: #e05146;
    border: solid 1px #e05146;
    color: #fff;
    text-decoration: none;
}

.btn-white {
    display: inline-block;
    text-align: center;
    color: #5F5F5F;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 3;
    border-radius: 4px;
    background: #F4F4F4;
    border: 1px solid #A4A4A4;
}

.btn-white:hover {
    background: #f7f7f7;
    color: inherit;
    text-decoration: none;
}

.btn-black {
    display: inline-block;
    text-align: center;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 3;
    border-radius: 4px;
    background: #000;
    border: solid 1px #000;
}

.btn-black:focus {
    color: #ffffff;
}

.btn-black:hover {
    background: #e05146;
    border: 1px solid #e05146;
    color: #fff;
    text-decoration: none;
}

.btn-gray {
    display: inline-block;
    text-align: center;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 3;
    border-radius: 4px;
    background: #777777;
    border: solid 1px #777777;
}

.btn-gray:focus {
    color: #ffffff;
}

.btn-gray:hover {
    background: #e05146;
    border: 1px solid #e05146;
    color: #fff;
    text-decoration: none;
}

.btn-blue {
    display: inline-block;
    text-align: center;
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 3;
    border-radius: 4px;
    background: #395370;
    border: solid 1px #395370;
}

.btn-blue:hover {
    background: #395370;
    color: white;
    text-decoration: none;
}

.btn-detail {
    width: 165px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    position: absolute;
    top: 42%;
    left: calc(50% - 165px / 2 - 0.5px);
}

.btn-small {
    padding: 0 20px;
    height: 32px;
    font-weight: 500;
    font-size: 12px;
    line-height: 32px;
}

:disabled {
    opacity: 0.2 !important;
    cursor: not-allowed !important;
}

.checkbox input {
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.checkbox input+span {
    cursor: pointer;
    color: #5f5f5f;
}

.checkbox input+span:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    border: solid 2px #D1D1D1;
    border-radius: 2px;
    margin-right: 5px;
    transform: translateY(-2px);
    background-color: #fff;
}

.share-setting .checkbox input+span:before {
    width: 16px;
    height: 16px;
}

.checkbox:hover input+span {
    color: #323232 !important;
}

.checkbox input:checked+span:before {
    border: none;
    background: url(../img/common/check_box.svg);
    background-size: 100%;
}

.alert-black {
    color: #fff;
    font-size: 13px;
    padding: 12px;
    background: #141414;
    position: fixed;
    top: 56px;
    left: 50%;
    min-width: 450px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(-50%) translateY(-20%);
    transition: all .3s;
    word-break: break-all;
}

.alert-black .close {
    font-size: 12px;
    line-height: 1.5;
    opacity: 1;
    margin: 0 5px;
}

.alert-black .revert {
    float: right;
    color: #ff6450;
    margin: 0 5px;
}

.middle {
    display: inline-block;
    vertical-align: middle;
    transform: translateY(-1px);
}
.hidden_class {
    display: none !important;
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.name-avatar {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    /*padding: 7px 0 6px;*/
    width: 20px;
    text-align: center;
    border-radius: 50%;
    /*background: #c8c8c8;*/
    height: 20px;
    vertical-align: middle;
    overflow: hidden;
}
.name-avatar img {
    width: 20px;
    height: 20px;
    max-width: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
}

#show-noti-modal .modal-header h4 {
    text-align: center;
    margin: 0 7px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    color: #212121;
    letter-spacing: 1.88px;
}

#show-noti-modal .modal-content {
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.20);
    border-radius: 12px;
}

#show-noti-modal .modal-body {
    max-height: 435px;
    max-width: 510px;
    overflow-y: auto;
    margin: 0 15px;
}

#show-noti-modal .modal-body::-webkit-scrollbar-track
{
	border-radius: 10px;
	background-color: transparent;
}

#show-noti-modal .modal-body::-webkit-scrollbar
{
	width: 5px;
	background-color: transparent;
}

#show-noti-modal .modal-body::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color:#777777;
}

#show-noti-modal .modal-header {
    display: flex;
    justify-content: center;
}

#noti-modal-title, .noti-modal-title {
    border-bottom: 1px solid #FF6450;
    padding: 20px 0 10px 0;
    font-size: 18px;
}

#noti-modal-content, .noti-modal-content {
    font-size: 14px;
}

#noti-modal-image, .noti-modal-image {
    border: 2px solid #E0E0E0;
    width: 450px;
    height: auto;
    margin-top: 80px;
}

#noti-modal-image:first-child, .noti-modal-image:first-child {
    margin-top: 0;
}

#noti-modal-published-date, .noti-modal-published-date {
    font-size: 12px;
    color: #A0A0A0;
    letter-spacing: 0;
    text-align: right;
    margin: 4px 0 15px 0;
    font-weight: normal !important;
}

#noti-modal-content a, .noti-modal-content a {
    color: #ff6450 !important;
    text-decoration: underline !important;
    cursor: pointer;
}

#notification .notification-item .title b, #noti-modal-title b, .noti-modal-title b, #noti-modal-content b, .noti-modal-content b {
    color: #ff6450;
}

#notification .notification-item .title.noti-modal-title--highlight, #noti-modal-title.noti-modal-title--highlight, .noti-modal-title.noti-modal-title--highlight {
    color: #212121 !important;
}

#notification .notification-item .content {
  font-size: 10px;
  line-height: 15px;
}

.modal {
    text-align: center;
    padding: 0!important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-content {
    border: 1px solid #E8E8E8;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.modal-content {
    border-radius: 8px;
}

.modal .modal-header {
    padding: 24px 24px 20px 24px;
    border-bottom: none;
    font-family: 'Noto Sans JP';
}

.modal .close {
    opacity: 1;
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 1;
    outline: none;
    display: none;
}

.modal .close:hover {
    opacity: 0.9!important;
}

.modal .modal-header .url-setting>a {
    color: inherit;
    font-size: 13px;
    text-decoration: none;
    margin-right: 15px;
}

.modal .modal-header .url-setting>a:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: solid 2px #dadada;
    margin-right: 4px;
    transform: translateY(-1px);
}

.modal .modal-header .url-setting>a.active:before {
    content: '';
    background: url(../img/common/radio.png);
    background-size: 20px;
    border: none;
}

.modal .modal-header .wrap-input {
    margin-top: 30px;
}

.modal .modal-header h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    color: #323232;
    padding: 0;
    font-weight: bold;
    line-height: 150%;
    letter-spacing: 0.06em;
}

.modal .modal-body {
    padding: 0 25px;
    font-size: 14px;
    color: #5F5F5F;
    min-height: 101px;
}

#exceed-limit-alert-download-modal .modal-header h4,
#confirm-before-download-modal .modal-header h4,
#exceed-limit-alert-download-modal-r-format .modal-header h4 {
    font-size: 20px;
    color: #1B1B1B;
    padding: 0;
    font-weight: bold;
    line-height: 30px;
}

#download-video-with-preview-modal .download-video-modal .modal-body {
    padding: 0 24px;
}
#exceed-limit-alert-download-modal .modal-body,
#confirm-before-download-modal .modal-body,
#exceed-limit-alert-download-modal-r-format .modal-body,
#confirm-before-download-modal-r-format .modal-body {
    padding: 0 24px;
    margin-bottom: 39px;
    font-family: 'Roboto', 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.05em;
    color: #545454;
}

#exceed-limit-alert-download-modal-r-format .modal-body {
    margin-bottom: 20px;
}

#confirm-before-download-modal .modal-body {
    margin-bottom: 60px;
}

#download-video-with-preview-modal.r-system-download .download-video-modal .modal-body {
    height: 320px;
}


.modal .modal-body .col-md-4 {
    padding: 0 7px;
}

.modal .modal-body .list-template .tripple-border {
    position: absolute;
    left: 17px;
    top: 14px;
    right: 0;
    bottom: 10px;
    border-radius: 4px;
    background: white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.modal .modal-body .list-template .tripple-border:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    top: -8px;
    left: -5px;
    right: 6px;
    bottom: 6px;
    border-radius: 4px;
    background: white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.modal .modal-body .list-template .margin-div {
    height: 12px;
}

.modal .modal-body .list-template .video-item.checked {
    box-shadow: 0 0 0 5px #ff6450;
    border-color: #ff6450;
}

.modal .modal-body .list-template .video-item .choose-template {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff;
    border: solid 2px #dadada;
    z-index: 2;
}

.modal .modal-body .list-template .video-item.checked .choose-template {
    background: #fff url(../img/common/check_circle.png);
    background-size: 100%;
    border: none;
}

.modal .modal-body .list-template .video-item .vjs-poster {
    cursor: pointer;
}

.modal-body .label .s2 {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #5F5F5F;
}

.modal-body .video_info_download_modal {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    display: flex;
    min-height: 32px;
    margin-bottom: 0;
    min-width: 400px;
    border-bottom: 1px solid #E8E8E8;
}

#download-video-with-preview-modal.r-system-download .modal-body .video_info_download_modal {
    min-width: 406px!important;
}

.modal-body .video_info_download_modal .info_left {
    min-width: 96px;
    color: #323232;
    display: flex;
    background: #F4F4F4;
    align-items: center;
}

.modal-body .video_info_download_modal .info_right {
    color: #5f5f5f;
    display: flex;
    align-items: center;
}

.modal-body .video_info_download_modal .info_left img {
    vertical-align: text-top;
    margin-top: 1px;
}

.modal-body .video_info_download_modal {
    width: 16px;
}
.modal-body .video_info_download_modal label {
    margin: 7px 8px;
}
.modal .modal-footer {
    border-top: 1px solid #E8E8E8;
    padding: 20px 24px;
}

#download-video-with-preview-modal .download-video-modal .modal-footer,
#exceed-limit-alert-download-modal .modal-footer,
#confirm-before-download-modal .modal-footer,
#exceed-limit-alert-download-modal-r-format .modal-footer,
#confirm-before-download-modal-r-format .modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #E8E8E8;
}

.modal .modal-footer>a,
.modal .modal-footer>button,
.modal .modal-footer>input,
.modal .modal-footer-right>a,
.modal .modal-footer-right>button {
    font-size: 12px;
    margin: 0 0 0 14px;
    transition: 0.3s;
    line-height: 17px;
    padding: 6.5px 16px;
}

#preview-generated-video-modal .modal-footer>a,
#preview-generated-video-modal .modal-footer>button,
#preview-generated-video-modal .modal-footer>input,
#preview-generated-video-modal .modal-footer-right>a,
#preview-generated-video-modal .modal-footer-right>button {
    margin-left: 2px;
}

#download-video-with-preview-modal .download-video-modal .modal-footer>a,
#download-video-with-preview-modal .download-video-modal .modal-footer>button {
    line-height: 17px;
    padding: 6.5px 16px;
}

.modal.message-modal .modal-dialog {
    width: 476px;
    font-family: 'Noto Sans JP';
}

.modal.message-modal .modal-dialog .message {
    color: #5F5F5F;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #5F5F5F;
    letter-spacing: 0.05em;
    font-feature-settings: 'palt' on;
}

.modal.message-modal .modal-dialog .message .red {
    color: #ff6450;
}

.modal.message-modal .modal-body {
    min-height: 114px;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    font-style: normal;
    color: #5F5F5F;
    letter-spacing: 0.05em;
    font-feature-settings: 'palt' on;
}

#delete_project_name,
#delete_folder_name {
    font-weight: 700;
    overflow: hidden;
    word-break: break-all;
}

#edit-profile-modal .modal-dialog, #edit-username-modal .modal-dialog, #edit-email-modal .modal-dialog, #edit-password-modal .modal-dialog {
    width: 499px;
    max-width: none;
}

#edit-username-modal .modal-dialog .modal-body, #edit-email-modal .modal-dialog .modal-body, #edit-password-modal .modal-dialog .modal-body {
    padding: 0 24px;
}

#edit-username-modal .modal-dialog .edit-modal-footer, #edit-email-modal .modal-dialog .edit-modal-footer, #edit-password-modal .modal-dialog .edit-modal-footer {
    padding: 20px 24px 20px 25px;
}

#edit-password-modal .input.password {
    padding-right: 35px;
}

#edit-profile-modal .change-avatar {
    float: right;
    width: 150px;
    margin-top: 10px;
    text-align: center;
}

#edit-profile-modal .change-avatar .avatar {
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

#edit-profile-modal .change-avatar .avatar label {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#edit-profile-modal .change-avatar .avatar label:hover:before {
    content: '変更';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.8);
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 90px;
    cursor: pointer;
}

#edit-profile-modal .change-avatar .avatar .name-avatar {
    width: 100%;
    height: 100%;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    background: #d8d8d8;
    padding: 0;
}

#edit-profile-modal .change-avatar .avatar .name-avatar img {
    width: 90px;
    height: 90px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#edit-profile-modal .change-avatar>a {
    display: inline-block;
    font-size: 12px;
    color: #777;
    border-bottom: dashed 1px #c8c8c8;
    padding-bottom: 2px;
    text-decoration: none !important;
    position: relative;
}

#edit-profile-modal .change-avatar>a:hover {
    border-bottom: none
}

#edit-profile-modal .change-avatar>a+a {
    margin-left: 15px;
}

#edit-profile-modal .change-avatar>a+a:before {
    content: '・';
    position: absolute;
    left: -15px;
    pointer-events: none;
}

#edit-profile-modal .form-group, #edit-username-modal .form-group, #edit-email-modal .form-group, #edit-password-modal .form-group {
    margin-bottom: 20px;
    position: relative;
}

#edit-profile-modal .form-group.fl {
    width: 280px;
}

#edit-profile-modal .form-group label, #edit-username-modal .form-group label, #edit-email-modal .form-group label, #edit-password-modal .form-group label {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
    width: 100%;
}

#edit-password-modal .form-group.new-password-container label {
    display: flex;
    line-height: 18px;
    align-items: center;
}

#edit-email-modal #id_password::placeholder, #edit-password-modal #id_new_password::placeholder, #edit-password-modal #id_repeat_password::placeholder {
    color: #E8E8E8;
}

#edit-profile-modal .form-group .data-group,
#edit-username-modal .form-group .data-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#edit-profile-modal .form-group .data-group .data,
#edit-username-modal .form-group .data-group .data {
    color: var(--text-title, #323232);
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'palt' on, 'liga' off;
    /* Text/14px - Medium */
    font-family: Noto Sans JP;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.84px;
    display: inline-flex;
    align-items: center;
}

#edit-profile-modal .form-group .data-group .edit-username, #edit-profile-modal .form-group .data-group .edit-email, #edit-profile-modal .form-group .data-group .edit-password {
    display: inline-flex;
    height: 28px;
    padding: 0px 12px;
    align-items: center;
    cursor: pointer;
    color: #21827C;
}

#edit-profile-modal .btn-red {
    display: flex;
    height: 32px;
    padding: 0px 16px;
    align-items: center;
    gap: 4px;
}

#edit-profile-modal .view_password, #edit-password-modal .view_password {
    position: absolute;
    right: 8px;
    top: 30px;
    z-index: 5;
}

#edit-profile .password-container input,
#edit-username .password-container input,
#edit-email .password-container input,
#edit-password .password-container input,
#edit-password .new-password-container input,
#edit-password .repeat-password-container input,
 {
    padding-right: 40px!important;
}

#edit-password img.tooltips {
    margin-left: 5px;
}

.gsap-video-item {
    box-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
    margin-bottom: 22px!important;
}

.video-item {
    background: #fff;
    border-radius: 0 0 10px 10px;
    position: relative;
    border: solid 1px #00000019;
}

.video-item > .edit-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    text-indent: -9999px;
    z-index: 1;
}
.video-item .video {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    border-radius: 4px 4px 0 0;
}

.video-item .video:hover .video-hover{
    opacity: 1;
    transition: 0.1s;
}

.video-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: default;
}

.modal .tab-content .tab-pane .video-item .video {
    margin-bottom: 30px;
}

.modal .tab-content .tab-pane .video-item .video-js .vjs-control-bar {
    bottom: -30px;
}

.video-item .video-js {
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-item .video-js video{
    width: calc(100% + 1px);
    height: calc(100% + 1px);
}

.video-item .video-js .vjs-poster {
    cursor: default;
}

.video-item .video-js .vjs-control,
.video-share .video-js .vjs-control,
.modal-format-detail .detail-wrap .video .video-js .vjs-control {
    outline: none;
}

.video-item .video-js .vjs-control.vjs-play-control,
.modal-format-detail .detail-wrap .video .video-js .vjs-control.vjs-play-control {
    float: left;
    width: 15%;
}

#narrator-confirmation-modal .video-item .video-js .vjs-control.vjs-play-control,
#video-preview-modal .video-item .video-js .vjs-control.vjs-play-control,
#material-video-preview-modal .video-item .video-js .vjs-control.vjs-play-control,
#preview-generated-video-modal .video-item .video-js .vjs-control.vjs-play-control,
#preview-video-slide-modal .video-item .video-js .vjs-control.vjs-play-control,
#download-thumbnail-video-modal .video-item .video-js .vjs-control.vjs-play-control,
#download-video-modal #over-download-limit-content .video-item .video-js .vjs-control.vjs-play-control,
#sampleMoviePreview .video-item .video-js .vjs-control.vjs-play-control,
#sceneVideoPreview .video-item .video-js .vjs-control.vjs-play-control{
    width: 30px;
}

.video-item .video-js .vjs-control.vjs-progress-control,
.modal-format-detail .detail-wrap .video .video-js .vjs-control.vjs-progress-control {
    float: left;
    width: 85%;
}

.video-item .video-js .vjs-fullscreen-control,
.video-item .video-js .vjs-remaining-time,
.video-share .video-js .vjs-remaining-time,
.modal-format-detail .detail-wrap .video .video-js .vjs-remaining-time {
    display: none !important;
}

.video-share .video-js .vjs-fullscreen-control{
    position: absolute;
    right: 2px;
    bottom: 0;
    width: 30px;
}

.video-share .video-js .vjs-control.vjs-play-control{
  width: 4em;
}

#wrap-content .list-video .video-item .video-js .vjs-volume-panel,
#add-video .list-template .video-item .video-js .vjs-volume-panel,
#change-template-modal .list-template .video-item .video-js .vjs-volume-panel,
.video-share .video-js .vjs-volume-panel,
.modal-main-full .video-js .vjs-volume-panel,
.modal-format-detail .detail-wrap .video .video-js .vjs-volume-panel {
    position: absolute;
    width: 30px;
    right: 30px;
}

#narrator-confirmation-modal .video-item .video-js .vjs-volume-panel,
#video-preview-modal .video-item .video-js .vjs-volume-panel,
#material-video-preview-modal .video-item .video-js .vjs-volume-panel,
#preview-generated-video-modal .video-item .video-js .vjs-volume-panel,
#preview-video-slide-modal .video-item .video-js .vjs-volume-panel,
#download-thumbnail-video-modal .video-item .video-js .vjs-volume-panel,
#download-video-modal #over-download-limit-content .video-item .video-js .vjs-volume-panel,
#sampleMoviePreview .video-item .video-js .vjs-volume-panel,
#sceneVideoPreview .video-item .video-js .vjs-volume-panel{
    position: absolute;
    width: 30px;
    right: 5px;
}

#download-video-with-preview-modal .video-item .video-js .vjs-volume-panel {
    position: absolute;
    right: 0;
}

.modal-main-full .video-js .vjs-volume-panel {
    right: 40px;
}

#narrator-confirmation-modal .video-item .video-js .vjs-control.vjs-progress-control,
#video-preview-modal .video-item .video-js .vjs-control.vjs-progress-control,
#material-video-preview-modal .video-item .video-js .vjs-control.vjs-progress-control,
#preview-generated-video-modal .video-item .video-js .vjs-control.vjs-progress-control,
#preview-video-slide-modal .video-item .video-js .vjs-control.vjs-progress-control,
#download-thumbnail-video-modal .video-item .video-js .vjs-control.vjs-progress-control,
#download-video-modal #over-download-limit-content .video-item .video-js .vjs-control.vjs-progress-control,
#sampleMoviePreview .video-item .video-js .vjs-control.vjs-progress-control,
#sceneVideoPreview .video-item .video-js .vjs-control.vjs-progress-control {
    width: calc(100% - 70px) !important;
}

#download-video-with-preview-modal .video-item .video-js .vjs-control.vjs-progress-control {
    width: calc(100% - 90px) !important;
}

.modal-main-full .video-js .vjs-control.vjs-progress-control {
    width: calc(100% - 100px) !important;
}

.video-share .video-js .vjs-control.vjs-progress-control {
    width: calc(100% - 90px) !important;
}

#video-preview-modal .video-item .video-js .vjs-volume-panel .vjs-mute-control,
#material-video-preview-modal .video-item .video-js .vjs-volume-panel .vjs-mute-control,
#wrap-content .list-video .video-item .video-js .vjs-volume-panel .vjs-mute-control,
#add-video .list-template .video-item .video-js .vjs-volume-panel .vjs-mute-control,
#change-template-modal .list-template .video-item .video-js .vjs-volume-panel .vjs-mute-control,
#narrator-confirmation-modal .video-item .video-js .vjs-volume-panel .vjs-mute-control,
#preview-generated-video-modal .video-item .video-js .vjs-volume-panel .vjs-mute-control,
#preview-video-slide-modal .video-item .video-js .vjs-volume-panel .vjs-mute-control,
#sampleMoviePreview .video-item .video-js .vjs-volume-panel .vjs-mute-control,
#sceneVideoPreview .video-item .video-js .vjs-volume-panel .vjs-mute-control,
#download-thumbnail-video-modal .video-item .video-js .vjs-volume-panel .vjs-mute-control,
#download-video-modal #over-download-limit-content .video-item .video-js .vjs-volume-panel .vjs-mute-control,
.video-share .video-js .vjs-volume-panel .vjs-mute-control {
    width: 30px;
}

#video-preview-modal .video-item .video-js .vjs-volume-control,
#material-video-preview-modal .video-item .video-js .vjs-volume-control,
#wrap-content .list-video .video-item .video-js .vjs-volume-control,
#add-video .list-template .video-item .video-js .vjs-volume-control,
#change-template-modal .list-template .video-item .video-js .vjs-volume-control,
#narrator-confirmation-modal .video-item .video-js .vjs-volume-control,
#preview-generated-video-modal .video-item .video-js .vjs-volume-control,
#preview-video-slide-modal .video-item .video-js .vjs-volume-panel,
#sampleMoviePreview .video-item .video-js .vjs-volume-control,
#sceneVideoPreview .video-item .video-js .vjs-volume-control,
#download-thumbnail-video-modal .video-item .video-js .vjs-volume-control,
#download-video-modal #over-download-limit-content .video-item .video-js .vjs-volume-control,
.video-share .video-js .vjs-volume-control {
    margin-left: 5px;
    z-index: 4;
}

.video-item .video-js .vjs-progress-holder,
.video-share .video-js .vjs-progress-holder {
    height: 6px;
    background: rgba(255, 255, 255, .4);
    margin: 0 5px;
    border-radius: 3px;
}
#wrap-content .list-video .video-item .video-js .vjs-progress-holder,
#add-video .list-template .video-item .video-js .vjs-progress-holder,
#change-template-modal .list-template .video-item .video-js .vjs-progress-holder,
.video-share .video-js .vjs-progress-holder {
    height: 4px;
}

.video-item .video-js .vjs-icon-placeholder:before {
    font-size: 26px;
    line-height: 1;
    padding-top: 2px;
    text-shadow: none !important;
}

#wrap-content .list-video .video-item .video-js .vjs-icon-placeholder:before,
#add-video .list-template .video-item .video-js .vjs-icon-placeholder:before,
#change-template-modal .list-template .video-item .video-js .vjs-icon-placeholder:before{
    font-size: 21px;
    padding-top: 5px;
}

.video-share .video-js .vjs-control-bar .vjs-icon-placeholder:before {
    font-size: 21px;
    line-height: 1;
    padding-top: 5px;
    text-shadow: none !important;
}

.video-item .video-js .vjs-play-control .vjs-icon-placeholder:before,
.video-share .video-js .vjs-play-control .vjs-icon-placeholder:before {
    content: url(../img/common/icon-play-rounded.png);
    transform: scale(0.35) translateY(-10px);
}

.video-item .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,
.video-share .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
    content: '';
    transform: none;
}

.video-item .video-js .vjs-load-progress {
    background: none;
}

.video-item .video-js .vjs-load-progress div {
    background: rgba(255, 255, 255, .4);
    border-radius: 3px;
}

.video-item .video-js .vjs-play-progress:before,
.video-share .video-js .vjs-play-progress:before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    right: -7px;
    top: -3px;
}

#wrap-content .list-video .video-item .video-js .vjs-play-progress:before,
#add-video .list-template .video-item .video-js .vjs-play-progress:before,
#change-template-modal .list-template .video-item .video-js .vjs-play-progress:before,
.video-share .video-js .vjs-play-progress:before {
    width: 10px;
    height: 10px;
}

#wrap-content .list-video .video-item .info {
    position: relative;
}

.video-item .video-js .vjs-play-progress:hover:before {
    background: #e05146;
    border: solid 1px #fff;
    transform: scale(1.3);
}

.video-item .video-js .vjs-slider-bar {
    border-radius: 3px;
    background: rgba(255, 255, 255, .8);
}

.video-item .video-js .vjs-slider-bar:hover {
    background: rgba(224, 22, 30, .6);
}

.video-item .video-js .vjs-volume-bar.vjs-slider-bar {
    background: rgba(255, 255, 255, .5);
}

.video-item .info {
    height: 40px;
    background: #fff;
    border-radius: 0 0 10px 10px;
}

.video-item .video-name {
    float: left;
    width: calc(100% - 76px);
    font-size: 12px;
    margin: 1px 0 0 8px;
    min-height: 34px;
}

.video-item .video-name .wrap-edit {
    display: none;
}

.video-item .video-name .wrap-edit .error-message {
    font-weight: bold;
    position: absolute;
    top: 100%;
    left: 2px;
    white-space: nowrap;
}

.video-item .video-name .display-name {
    float: left;
    line-height: 27px;
    padding-top: 5px;
    max-width: calc(100% - 25px);
}

.video-item .video-name .edit-video-name {
    float: left;
    margin: 9px;
    line-height: 1;
    display: none;
}

.video-item .setting {
    float: right;
    margin: 6px 8px 6px 0px;
}

.video-item .setting .dropdown-toggle:after {
    display: none;
}

.video-item .setting .dropdown-menu {
    min-width: 220px;
    z-index: 2000;
}

.video-item .setting .dropdown-item,
.video-item .video-flag .dropdown-item {
    padding: 0;
}

.video-item .setting .dropdown-item a {
    color: inherit;
    font-size: 13px;
    padding: 6px 0 6px;
    text-decoration: none;
    display: block;
}

.video-item .setting .dropdown-item a .icon {
    width: 30px;
    text-align: center;
    display: inline-block;
    margin-left: 3px;
    margin-right: 5px;
}

#download-video-modal.modal .download-video-modal .modal-body{
    padding: 0 30px 8px 30px;
}
#download-video-modal .download-video-modal .plan{
    margin: 20px 0 22px;
}
#download-video-modal.modal .download-video-modal .modal-footer {
    padding: 0px 30px 25px;
    border-top: none;
}
#addition-download-modal .modal-content,
#confirm-plan-modal .modal-content{
    max-width: 385px;
}
.modal-content button{
    outline:none;
}

.modal-limit button{
    margin-bottom: 10px;
    border-radius: 3px;
    transition: 0.3s;
}
.modal-limit a{
    transition: 0.3s;
}

#preview-generated-video-modal .modal-content .other_link,
.modal-content .other_link{
    padding-top: 0;
}
.modal-content .text_note{
    font-size: 14px;
}
.modal-content .text_warning {
    color: red;
    font-size: 11px;
    text-align: left;
}

.download-video-modal .text_warning {
    margin-top: 15px;
}

.modal .flex {
    display: flex;
    padding-bottom: 20px;
}

#download-video-with-preview-modal .download-video-modal .modal-header,
#exceed-limit-alert-download-modal .modal-header,
#confirm-before-download-modal .modal-header,
#exceed-limit-alert-download-modal-r-format .modal-header {
    padding: 25px 24px 16px;
}

#download-video-with-preview-modal .modal-content,
#exceed-limit-alert-download-modal .modal-content,
#confirm-before-download-modal .modal-content,
#exceed-limit-alert-download-modal-r-format .modal-content {
    border-radius: 8px;
}

#download-video-with-preview-modal .thumbnail-slider-controller .go-to-left,
#download-video-with-preview-modal .thumbnail-slider-controller .go-to-right
{
    cursor: pointer;

}

#download-video-with-preview-modal .thumbnail-slider-controller {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 40%;
    width: 100%;
    padding: 0 4px;
}

#download-video-with-preview-modal .thumbnail-slider-container .slide-indicator {
    margin-right: 6px;
    margin-bottom: 4px;
    content: url("../img/gsap/icon_thumbnail_slide.svg");
    cursor: pointer;
}

#download-video-with-preview-modal .thumbnail-slider-container .slide-indicator.active {
    content: url("../img/gsap/icon_active_thumbnail_slide.svg");
}

#download-video-with-preview-modal .thumbnail-slider-container {
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    width: 100%;
}

#download-video-with-preview-modal .download-video-modal .modal-footer .plan {
    float: left;
    font-family: 'Roboto', 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 32px;
    margin-left: 3px;
}

#download-video-with-preview-modal .download-video-modal .modal-body .box_loading {
    margin-right:40px;
}
#download-video-with-preview-modal .download-video-modal .modal-body .video-item {
    width: 268px;
}
#download-video-with-preview-modal.r-system-download .download-video-modal .modal-body .video-item {
    width: 240px;
    border-radius: 0;
    box-shadow: unset;
    margin-bottom: 0!important;
    outline: solid 1px #00000019!important;
    border: none!important;
}
#download-video-with-preview-modal.r-system-download .download-video-modal .modal-body .ajax_render {
    width: 408px;
}

#download-video-with-preview-modal.r-system-download .download-video-modal .modal-body .ajax_render .video_info_table{
    width: 408px;
}

.individual_information {
    margin-top: 28px;
    border-top: 1px solid #E8E8E8;
    letter-spacing: 0.05em;
}

.individual_information h5 {
    font-family: 'Roboto', 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    color: #545454;
    line-height: 20px;
    margin: 16px 0 15px;
    letter-spacing: 0.05em;
}

.individual_information  {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    color: #545454;
    letter-spacing: 0.05em;
    font-feature-settings: 'palt' on;
}

.individual_information_list {
    overflow: hidden;
}
.mr16 {
    margin-right: 16px;
}
.individual_information  p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.individual_information .video_info_in_list {
    float: left;
}

.individual_information .video_info_in_list img {
    vertical-align: sub;
}
#download-video-with-preview-modal .text_note {
    display: flex;
    margin-bottom: 30px;
    max-width: 330px;
}
#download-video-with-preview-modal.r-system-download .text_note {
    display: flex;
    margin-bottom: 20px;
    max-width: 530px;
}
#download-video-file-btn, .confirm-download-video {
    float: right;
    margin-left: 14px;
}
#download-video-with-preview-modal .text_video_name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    color: #323232;
    margin-right: 16px;
    max-width: 292px;
}
#download-video-with-preview-modal.r-system-download .text_video_name {
    max-width: 100% !important;
}
#download-video-with-preview-modal .text_video_extension {
    text-transform: uppercase;
}

#download-video-with-preview-modal .shortage .modal-body {
    padding-top: 30px;
}

#download-video-with-preview-modal .shortage {
    margin: 0 auto;
    width: 430px;
}


#download-video-with-preview-modal .btn-red img {
    vertical-align: text-top;
    float: left;
    margin-right: 4px;
    margin-top: -1px;
}

.configuration-table-modal img {
    vertical-align: text-top;
}

#confirm-plan-modal .modal-content .plan,
#addition-download-modal .modal-content .plan{
    margin: 24px 0 0;
}
.modal-content .plan dt{
    color: #9B9B9B;
    font-size: 14px;
    margin-right: 3px;
    font-weight: normal;
}
.modal-content .plan dd{
    color: #000;
    font-size: 14px;
}
#progressCircle {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
}
.progressbar-text{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    line-height: 100px;
    font-size: 28px;
}
.progressbar-text:after{
    content: "%";
    font-size: 18px;
}
#progressCircle svg{
    position: relative;
    z-index: 2;
}
.q_and_a {
    margin: 15px 0 11px 11px;
    float: right;
}
.q_and_a a{
    color: #0275d8;
}

.notification_loading {
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../img/common/loading.gif) center center no-repeat;
}
/* hidden error at videojs */
.vjs-error-display {
    display: none;
}
/* new design for edit profile */
#edit-profile-modal .edit-modal-footer,
#edit-username-modal .edit-modal-footer,
#edit-email-modal .edit-modal-footer,
#edit-password-modal .edit-modal-footer {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding: 20px 25px 30px 25px;
}
#edit-profile-modal .edit-modal-footer .modal-footer-left,
#edit-username-modal .edit-modal-footer .modal-footer-left,
#edit-email-modal .edit-modal-footer .modal-footer-left,
#edit-password-modal .edit-modal-footer .modal-footer-left {

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#edit-profile-modal .edit-modal-footer .modal-footer-left .line {
    line-height: 1.25;
    font-size: 13px;
}
#edit-profile-modal .edit-modal-footer .modal-footer-left .line label {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}
#edit-profile-modal .edit-modal-footer .modal-footer-right,
#edit-username-modal .edit-modal-footer .modal-footer-right,
#edit-email-modal .edit-modal-footer .modal-footer-right,
#edit-password-modal .edit-modal-footer .modal-footer-right {
    display: flex;
    align-items: end;
    justify-content: end;
}

#edit-profile-modal .edit-modal-footer .modal-footer-right a {
    margin-left: 0px;
}
/* Set control bar don't overlap video */
/* Don't fade out controls */
.video-js.vjs-static-controls.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
    opacity: 1;
    visibility: visible;
}

/* Align poster to top */
.video-js.vjs-static-controls .vjs-poster {
  /*background-position: 50% 0;*/
}

/* Override tech height:100% */
.video-js.vjs-static-controls .vjs-tech {
  height: calc(100% + 1px);
}
/* End set control bar don't overlap video */
/* Style checkbox */
.download-video-modal a.download[disabled="disabled"] {
    pointer-events: none;
    opacity: 0.2;
}
.download-checkbox-group .container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: red;
}

/* Hide the browser's default checkbox */
.download-checkbox-group .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* custom checkbox */
.download-checkbox-group .container .checkmark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 17px;
	width: 20px;
	background: url(../img/common/checkbox.png) no-repeat;
	background-size: 100%;
	background-position: 0 0;
}

.download-checkbox-group .container input:checked ~ .checkmark {
	background-position: 0 -17px;
}
/* End style checkbox */
.list-template-pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    clear: both;
    padding-bottom: 15px;
}

.list-template-pagination-prev{
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('../img/common/icon-pagination-left.svg');
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 8px;
    transition: 0.5s;
}
.list-template-pagination-prev.disabled{
    display: none;
}
.list-template-pagination-prev:hover{
    filter: brightness(1.05);
}
.list-template-pagination-prev:active{
    filter: brightness(0.95);
}
.list-template-pagination-next{
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('../img/common/icon-pagination-left.svg');
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-180deg);
    margin-left: 8px;
    transition: 0.5s;
}
.list-template-pagination-next.disabled{
    display: none;
}
.list-template-pagination-next:hover{
    filter: brightness(1.05);
}
.list-template-pagination-next:active{
    filter: brightness(0.95);
}

.list-template-pagination ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.list-template-pagination ul li{
    margin-right: 6px;
}
.list-template-pagination ul li:last-child{
    margin-right: 0;
}
.list-template-pagination ul a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    color: #5F5F5F;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    transition: 0.5s;
    border-radius: 50%;
}
.list-template-pagination ul a.active{
    background: #323232;
    color: #fff;
}
.list-template-pagination ul a:hover{
    opacity: 0.6;
}

.list-template-pagination .list-template-pagination-dot {
    color: #5F5F5F;
}

.modal .list-template .list-template-pagination{
    padding-top: 14px;
}
.modal .list-template .vjs-poster {
      display: none;
}

.tab-pane .template-set-name {
    color: #777;
    font-size: 12px;
    margin-top: 5px;
}
.list-template .tab-content{
    overflow-y: scroll;
    outline: none;
    padding-top: 10px;
    height: calc(100vh - 178px);
}

#add-video.modal .modal-body .list-template{
    padding: 30px 35px 0px 20px;
}
#add-video .video-item.video-folder .video-name{
    padding-left: 22px;
    position: relative;
}
#add-video .video-item.video-folder .video-name:before{
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(../img/common/icon-project.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 1;
    top: 8px;
    left: 0px;
}

.template-list-breadcrumb{
    float: left;
    width: 100%;
    box-sizing: border-box;
    padding: 0 7px;
}
.template-list-breadcrumb ul{
    overflow: hidden;
    margin-bottom: 15px;
}
.template-list-breadcrumb li{
    float: left;
    font-size: 12px;
    margin-left: 20px;
    position: relative;
}
.template-list-breadcrumb li:first-child{
    margin-left: 0;
}
.template-list-breadcrumb li:before{
    content:'>';
    position: absolute;
    top: 0;
    left: -15px;
}
.template-list-breadcrumb li:first-child:before{
    display: none;
}
.template-list-breadcrumb li a{
    color: #292828;
    font-size: 12px;
}

.r-support-system {
    color: #FF8B7C;
    display: flex;
    font-size: 11px;
    line-height: 20px;
    padding-left: 0.5rem;
    margin-top: 0.1rem;
}

.r-support-system > * {
    padding-left: 1.1rem !important;
}

.icon-r-support-system {
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-image: url(../img/common/icon-r-support.svg);
    padding: 11px;
}

.configuration-table,
.configuration-table-detail,
.favorite-template,
.favorite-template-detail,
.question-detail,
.icon-r-support-system,
.icon-fill-square,
.icon-empty-square-gray,
.icon-image-gray,
.icon-clock-gray,
.icon-single-chevron-up,
.icon-single-chevron-down {
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    z-index: 1;
}

.icon-fill-square {
    background-image: url(../img/common/icon-fill-square.svg);
}

.icon-empty-square-gray {
    background-image: url(../img/common/square-gray.svg);
}

.icon-image-gray {
    background-image: url(../img/common/icon-image-gray.svg);
}

.icon-clock-gray {
    background-image: url(../img/common/icon-clock-gray.svg);
}

.icon-fill-square,
.icon-empty-square-gray,
.icon-image-gray,
.icon-clock-gray {
    width: 15px;
    height: 15px;
    background-size: 15px;
}

.question-detail {
    padding: 11px;
    width: 18px;
    height: 18px;
    background-size: 18px;
    background-image: url(../img/common/icon-info-support.svg);
}

.configuration-table {
    width: 22px;
    height: 22px;
    background-size: 22px;
    background-image: url(../img/common/configuration_table_2.svg);
    position: absolute;
    top: 10px;
    right: 40px;
}

.configuration-table-detail {
    width: 24px;
    height: 24px;
    background-size: 24px;
    background-image: url(../img/common/configuration_table_4.svg);
}

.favorite-template {
    width: 22px;
    height: 22px;
    background-size: 22px;
    background-image: url(../img/common/star_2.svg);
    position: absolute;
    top: 10px;
    right: 13px;
}

.favorite-template-detail {
    width: 24px;
    height: 24px;
    background-size: 24px;
    background-image: url(../img/common/star_4.svg);
}

.favorite-template.active,
.favorite-template-detail.active {
    background-image: url(../img/common/star_3.svg);
}

.icon-single-chevron-up,
.icon-single-chevron-down {
    width: 14px;
    height: 14px;
    background-size: 14px;
}

.icon-single-chevron-up {
    background-image: url(../img/common/icon-single-chevron-up.svg);
}

.icon-single-chevron-down {
    background-image: url(../img/common/icon-single-chevron-down.svg);
}

.tab-pane .template-set-name a.template-back-home {
    color: #292828;
    text-decoration: none !important;
    position: fixed;
    top: 72px;
    z-index: 2;
}
#template-favorite .empty {
    color: #7f7f7f;
    text-align: center;
    font-size: 22px;
}

#crop-image-modal .modal-footer .rotate{
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#crop-image-modal .modal-footer{
    padding: 4px 30px 30px;
}
#crop-image-modal .modal-footer .modal-btns{
    overflow: hidden;
    margin-bottom: 12px;
}
#crop-image-modal .modal-footer a{
    display: inline-block;
}

#crop-image-modal .modal-footer a.fit-side:hover {
    filter: invert(61%) sepia(35%) saturate(5605%) hue-rotate(327deg) brightness(101%) contrast(110%);
}

#crop-image-modal .modal-footer a.rotate-left:hover, #crop-image-modal .modal-footer a.rotate-right:hover {
    filter: invert(61%) sepia(35%) saturate(5605%) hue-rotate(327deg) brightness(101%) contrast(110%);
}

#crop-image-modal .modal-footer .modal-crop-range{
    position: absolute;
    bottom: 26px;
    left: 24px;
    width: 238px;
    height: 44px;
    background: url('../img/common/range-bg.png');
    background-repeat: no-repeat;
    background-size: 228px 35px;
    background-position: center;
}

.cropper-crop-box:after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

#crop-image-modal .cropper-modal {
    opacity: 0;
}
#crop-image-modal .cropper-bg .cropper-modal {
    opacity: 0.5;
}
#crop-image-modal .cropper-bg .cropper-crop-box:after {
    background: rgba(255,255,255,.1);
    backdrop-filter: brightness(1.25) contrast(1.85);
}

.background-filter, .background-loading {
    width: 440px;
    height: 440px;
    padding: 0px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.background-filter {
    transition: all, 0.3s, linear;
}
.background-loading {
    position: absolute;
    z-index: 100;
    background: rgba(0,0,0,.3);
}
.background-loading p.loading_icon {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.background-filter-img{
    overflow: hidden;
    transition: all, 0.3s, linear;
    z-index: 0;
    position: absolute;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    filter: blur(3px);
    opacity: 0.3;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;

}
#crop-image-modal .modal-footer .cropper-control-container{
    display: flex;
    flex-direction: row;
    margin-top: 8px;
}
#crop-image-modal .modal-footer .first-column{
    display: flex;
    flex-direction: column;
    width: 50%;
}
#crop-image-modal .modal-footer .second-column{
    display: flex;
    flex-direction: column;
}
#crop-image-modal .modal-footer .right-align{
    margin-left: auto;
    margin-right: 0;
}
#crop-image-modal .modal-footer .item-row{
    display: table-row;
    height: 44px;
}

#crop-image-modal .modal-footer .item-cell{
    display: table-cell;
    padding-left: 2px;
}

.modal-crop-range input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 0;
    /* width: 217px; */
    /* position: absolute; */
    /* top: 13px;
    left: 10px; */
    width: 139px;
}
.modal-crop-range input[type="range"]:focus,
.modal-crop-range input[type="range"]:active {
    outline: none;
}
.modal-crop-range input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    width: 6px;
    height: 16px;
    display: block;
    background-color: rgba(224,22,30,0.7);
    border-radius: 1px;
    -webkit-border-radius: 1px;
}
/*---------------------- フォーマット検索機能追加 ここから ----------------------*/
.drop-down{
    padding-left: 10px;
    margin-top: 20px;
}
.drop-down-badge{
    display: inline-block;
    color: #fff;
    background: #FF6450;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    margin-right: 3px;
    font-size: 10px;
    text-align: center;
    border-radius: 16px;
    font-weight: normal;
}
.drop-down dl dd{
    float: left;
    border-right: 1px solid #ddd;
    color: #777;
    font-size: 12px;
    position: relative;
}
.drop-down dl dd:first-child{
    border-left: 1px solid #ddd;
}
.drop-down dl dd p{
    padding: 5px 2.5em 5px 10px;
    background: url('../img/common/icon-modal-arrow_dropdown.png') no-repeat center right 10px / 8px 5px;
    cursor: pointer;
}
.drop-down dl dd.active p{
    background: url('../img/common/icon-modal-arrow_dropdown_active.png') no-repeat center right 10px / 8px 5px;
    font-weight: 700;
    color: #000;
}
.drop-down dl dd .drop-down_box{
    display: none;
}
.drop-down dl dd.active .drop-down_box{
    display: block;
    width: 180px;
    padding: 10px 0 15px 15px;
    background: #fff;
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 10;
    box-shadow: 1px 1px 2px rgba(99,99,99,0.5);
}
.drop-down dl dd.active .drop-down_box:before{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 17px;
    top: -10px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid #fff;
}
.drop-down dl dd .drop-down_box .drop-down_box_list{
    max-height: 240px;
    padding-top: 15px;
    overflow-y: scroll;
}
.drop-down dl dd .drop-down_box .drop-down_box_list input[type=radio],
.drop-down dl dd .drop-down_box .drop-down_box_list input[type=checkbox]{
    display: none;
}
.drop-down dl dd .drop-down_box .drop-down_box_list label{
    display: block;
    vertical-align: middle;
    padding-left: 23px;
    margin-bottom: 1em;
    cursor: pointer;
    color: #777!important;
    font-size: 12px!important;
    position: relative;
}
.drop-down dl dd .drop-down_box .drop-down_box_list label:before{
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1;
    display: block;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    background: #e9e9e9;
    border-radius: 2px;
    content: '';
}
.drop-down dl dd .drop-down_box .drop-down_box_list input[type=checkbox]:checked + label:before{
    background: #FF6450;
}
.drop-down dl dd .drop-down_box .drop-down_box_list label:after{
    position: absolute;
    top: 6px;
    left: 4px;
    z-index: 2;
    display: block;
    margin-top: -7px;
    width: 8px;
    height: 13px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    content: '';
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.drop-down dl dd .drop-down_box .drop-down_box_list input[type=checkbox]:checked + label{
    font-weight: 700;
    color: #000!important;
}
.drop-down dl dd .drop-down_box .drop-down_box_list input[type=checkbox]:checked + label:after{
  opacity: 1;
}
.drop-down dl dd .drop-down_box .drop-down_box_button{
    padding-top: 10px;
    margin-top: 10px;
    margin-right: 20px;
    position: relative;
}
.drop-down dl dd .drop-down_box .drop-down_box_button:before{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    top: 0;
    left: 0;
}
.drop-down dl dd .drop-down_box .drop-down_box_button span{
    display: inline-block;
    margin-right: 3px;
    border-bottom: 1px dashed #777;
    cursor: pointer;
    color: #777;
    font-size: 12px;
}
.drop-down dl dd .drop-down_box .drop-down_box_button button{
    padding: 4px 10px;
    background: #FF6450;
    border: none;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    float: right;
}
.drop-down dl dd.drop-down_box_cancel{
    border-right: none;
    display: none;
}
.drop-down dl dd.drop-down_box_cancel.show{
    display: block;
}
.drop-down_box_cancel span{
    display: inline-block;
    margin: 4px 0 0 30px;
    border-bottom: 1px dashed #777;
    cursor: pointer;
    font-weight: normal;
    color: #777;
    font-size: 12px;
}
.list-template .tab-content{
    height: calc(100vh - 290px);
}
.modal-search input[type=text]{
    width: 200px;
    height: 30px;
    padding: 5px;
    background: #fff;
    border: 1px solid #979797;
    font-size: 12px;
    color: #777;
    border-radius: 2px;
}
.modal-search-input{
    position: relative;
}
.modal-search input[type="text"]:not(:placeholder-shown) + .modal-search-delete{
    display: block;
    position: absolute;
    right: 54px;
    top: 16px;
    bottom: 0;
    width: 16px;
    height: 32px;
    background: url(../img/common/icon-modal-cancel.png);
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: center;
}
.modal-search-input .modal-search-submit{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 28px;
    height: 30px;
    background: url(../img/common/icon-modal-search.png);
    background-repeat: no-repeat;
    background-size: 14px 15px;
    background-position: center;
}
.modal-search select{
    width: 86px;
    height: 32px;
    top: 16px;
    right: 29px;
    position: absolute;
    padding: 4px 25px 4px 11px;
    background: url('../img/common/icon-modal-templates-arrow_dropdown.svg') no-repeat center right 12px / 15px 15px, #fff;
    border: 1px solid #9CA9B7;
    color: #395370;
    font-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    font-weight: 700;
}
.modal-search select::-ms-expand {
    display: none;
}

.modal .modal-body .list-template .video-item.video-item-folder{
    border-color: #6C6C6C;
}
.video-item.video-item-folder .video-name{
    padding-left: 24px;
    position: relative;
}
.video-item.video-item-folder .video-name:before{
    content: '';
    display: block;
    width: 18px;
    height: 15px;
    background-image: url('../img/common/icon-modal-folder.png');
    background-position: center;
    background-size: 18px 15px;
    position: absolute;
    top: 11px;
    left: 2px;
}
.modal .list-template .video-item .info{
    height: 60px;
}
.modal .list-template .video-item .display-info{
    display: block;
    clear: both;
    text-align: right;
}
.modal .list-template .video-item .display-info.display-color:before{
    float: left;
    background-image: url('../img/common/RICHKA_color_icon.svg');
    width: 20px;
    height: 20px;
    display: block;
    content: '';
}

.modal .list-template .video-item .display-time{
    padding-left: 24px;
    position: relative;
    color: #777777;
    display: inline-block;
}
.modal .list-template .video-item .display-time:before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../img/common/icon-modal-time.png);
    background-position: center;
    background-size: 16px 16px;
    position: absolute;
    top: 1px;
    left: 4px;
}
.modal .list-template .video-item .display-material{
    padding-left: 24px;
    position: relative;
    color: #777777;
    display: inline-block;
}
.modal .list-template .video-item .display-material:before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../img/common/icon-modal-material.png);
    background-position: center;
    background-size: 16px 16px;
    position: absolute;
    top: 1px;
    left: 4px;
}
.modal .list-template .video-item .display-warning-info {
    display: block;
    clear: both;
    text-align: left;
    color: red;
}
.modal .list-template .video-item .display-warning {
    position: relative;
    padding-left: 25px;
    line-height: 18px;
    display: inline-block;
}
.modal .list-template .video-item .display-warning:before{
    content: '';
    display: block;
    width: 18px;
    height: 16px;
    background-image: url(../img/common/icon_warning.svg);
    background-position: center;
    background-size: 18px 16px;
    position: absolute;
    top: 1px;
    left: 0px;
}
input#color_filter {
    display: none;
}
input[type=checkbox]:checked + label:after {
    opacity: 1;
}
input[type=checkbox]:checked + label:before {
    -ms-box-shadow: inset 0px -2px 2px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0px -2px 2px rgba(0,0,0,0.1);
    box-shadow: inset 0px -2px 2px rgba(0,0,0,0.1);
}
#change-template-modal input[type=checkbox]:checked + label:after {
    opacity: 1;
}
label[for="color_filter"] img {
    margin: -3px 3px -3px 0;
}
label[for="blur_color_filter"] {
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 25px; /* 10 px padding right + 15px input type*/
    font-size: 12px!important;
    color: #5f5f5f;
}

label[for="blur_color_filter"]:hover {
    color: #323232;
}

label[for="blur_color_filter"]:before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
}

.blur_checkbox input[type=checkbox] {
    display: none;
}

.blur_checkbox input[type=checkbox] + label:before {
    background: url('../img/common/checkbox_off.svg') left center no-repeat;
    background-position: right center;
    margin-top: 2px;
}

.blur_checkbox input[type=checkbox]:checked + label:before {
    border: none;
    background: url(../img/common/check_box.svg);
    background-size: 100%;
}



/*---------------------- フォーマット検索機能追加 ここまで ----------------------*/
/**  BGM機能追加 ここまで **//*---------------------- Tooltip override ----------------------*/
.tooltipster-base {
    background: none;
}
.tooltipster-base .tooltipster-content {
    padding: 0px 6px 0px;
    font-size: 10px !important;
    font-weight: 100 !important;
    color: #fff !important;
}
.tooltipster-sidetip .tooltipster-box {
    background: #545454 !important;
    border: none !important;
    border-radius: 2px !important;
    box-shadow: unset !important;
}
.tooltipster-base {
    border-radius: 2px;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border, .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border: none;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #545454 !important;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #545454 !important;
}
.tooltipster-sidetip .tooltipster-content {
    max-width: 335px !important;
}
/*---------------------- End tooltip ----------------------*/
/**---------------------- Resolution Modal ----------------------*/
.resolution_horizontal {
    flex: 50%;
}

.resolution_vertical {
    flex: 50%;
    text-align: right;
}

.resolution_box {
    margin-top: 20px;
    display: flex;
}

.resolution_input {
    width: 72px;
    margin-left: 5px;
    margin-top: 12px;
    color: #373a3c;
}
.gif-annotation {
    margin-top: 20px;
    color: #767676;
    font-size: 12px;
}
.quality-annotation {
    margin: 0px 0px 15px 70px;
    color: #767676;
    font-size: 12px;
    width: calc(100% - 50px);
}

.quality-color {
    color: #e05146;
}
#gif-resolution-warning{
    font-size: 12px;
    color: red;
    margin-top: 15px;
    text-align: left;
}
#watermark-warning-message {
    font-size: 12px;
    color: red;
    margin-top: 5px;
    text-align: left;
}
/*---------------------- End Resolution Modal ----------------------*/
.image-list-index {
    width: auto;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*---------------------- Download Thumbnail Video Modal ----------------------*/
#download-thumbnail-video-modal .modal-dialog {
    width: 876px;
    max-width: 100%;
    /*heigh: 420px;*/
}
#download-thumbnail-video-modal .modal-body {
    padding: 0px 20px 25px 20px;
    font-size: 12px;
}
#download-thumbnail-video-modal .modal-body-left {
    width: 330px;
    float: left;
    margin-right: 20px;
}
#download-thumbnail-video-modal .modal-body-right {
    width: calc(100% - 350px);
    float: left;
    position: relative;
}
#download-thumbnail-video-modal .modal-body-left .video-js {
    width: 330px;
    height: 298px;
    overflow: unset!important;
}

#download-thumbnail-video-modal .help-thumbnail-export-icon {
    margin-top: -3px;
    margin-left: 3px;
}

#download-thumbnail-video-modal .video-item {
    margin-bottom: 0;
    border: none;
}

#download-thumbnail-video-modal .close-modal-btn {
    top: 24px;
    font-size: 12px;
    font-weight: 500;
    right: 24px;
    border: solid 1px #395370;
    color: #395370;
    background-color: white;
    width: 72px;
    position: absolute;
    line-height: 2.3;
    border-radius: 4px;
    display: block;
}

#download-thumbnail-video-modal .thumbnail-movie-bottom{
    width: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
}

#download-thumbnail-video-modal .modal-body-right-bottom {
    height: 60px;
    position: relative;
}

#download-thumbnail-video-modal .thumbnail-movie-bottom .btn-previous, #download-thumbnail-video-modal .thumbnail-movie-bottom .btn-next {
    background: #E8E8E8;
    border: none !important;
}
#download-thumbnail-video-modal .thumbnail-movie-bottom .btn-previous:before, #download-thumbnail-video-modal .thumbnail-movie-bottom .btn-next:before {
}
#download-thumbnail-video-modal .thumbnail-movie-bottom .btn-previous:hover, #download-thumbnail-video-modal .thumbnail-movie-bottom .btn-next:hover {
    background-color: #c0c0c0;
}

#download-thumbnail-video-modal .thumbnail-movie-bottom .btn-previous:before, #download-thumbnail-video-modal .thumbnail-movie-bottom .btn-next:before {
	box-shadow: -2px 2px 0 rgb(84,84,84);
}

#download-video-with-preview-modal .modal-dialog {
    width: 760px;
    max-width: 100%;
}

#exceed-limit-alert-download-modal .modal-dialog,
#confirm-before-download-modal .modal-dialog {
    width: 500px;
}

.preview-canvas-wrapper {
    width: 165px;
    height: 165px;
    background: #eaeaea;
    border: 1px solid #d4d4d4;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.preview-canvas-wrapper:after {
    content: "";
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    border: 1px solid #d4d4d4;
    z-index: 9;
    position: absolute;
}

.modal-body-right-top {
    margin-bottom: 12px;
    overflow: hidden;
}
.modal-body-right-top > p:first-child {
    margin-bottom: 5px;
}
.modal-body-right-top > div:last-child {
    display: table;
    float: right;
    width: calc(100% - 165px);
    height: 165px;
    text-align: center;
}
.modal-body-right-top > div > div {
    display: table-cell;
    vertical-align: middle;
}
.modal-body-right-top > div > div a {
    padding-top: 15px;
}
.modal-body-right-bottom p {
    font-size: 12px;
}
.thumbnail-image-type {
    overflow: hidden;
    display: flex;
    align-items: center;
}
.preview-image-size {
    margin: 0 0 16px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.thumbnail-image-type > *,
.preview-image-size > * {
    font-size: 13px;
}
.thumbnail-image-type > b:first-child,
.preview-image-size > b:first-child {
    min-width: 120px
}
.thumbnail-image-type .thumbnail_image_jpeg,
.preview-image-size .preview-image-size-height {
    margin-left: 20px;
}
.preview-image-size input {
    width: 50px;
    margin: 0 5px 0 10px;
    border-radius: 3px;
    border: 1px solid #a1a1a1;
    text-indent: 5px;
    text-align: left;
    padding-top: 4px;
}
.preview-image-size b:last-child {
    font-size: 12px;
}
#download-thumbnail-video-modal .btn-download-thumbnail-video {
    width: 268px;
    line-height: 2.6;
    border-radius: 25px;
    user-select: none;
}
#download-thumbnail-video-modal .btn-generate-scene-thumbnails-video {
    width: 202px;
    line-height: 2.6;
    border-radius: 25px;
    background: #395370;
    user-select: none;
}
#download-thumbnail-video-modal .btn-generate-scene-thumbnails-video:hover {
    opacity: 0.75;
}
#download-thumbnail-video-modal .full-width {
    width: 100% !important;
}
#download-thumbnail-video-modal .preview-warning-message {
    font-size: 10px;
    color: red;
    position: absolute;
    top: 26px;
}
#download-thumbnail-video-modal .video .preview-wrap-video video {
    width: 100% !important;
    height: 100% !important;
}
#download-thumbnail-video-modal .video-item .video-js.vjs-user-inactive .vjs-control-bar {
    display: none !important;
}
#download-thumbnail-video-modal.modal .modal-header {
    padding-bottom: 20px;
}
#download-thumbnail-video-modal .video-item .video-js .vjs-control-bar {
    bottom: -30px;
}
#download-thumbnail-video-modal .control-container {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

/*---------------------- End Download Thumbnail Video Modal ----------------------*/
/*---------------------- Group Loading Uploading Block ----------------------*/
.upload-loading-wrapper {
    position: absolute;
    width: 100%;
    top: 40px;
    z-index: 101;
}
.group-upload-loading {
    position: relative;
    display: inline-block;
}

.group-upload-loading .bigSqr {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
    -webkit-animation: bigSqrShrink 1s linear infinite;
          animation: bigSqrShrink 1s linear infinite;
}

.group-upload-loading .square {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #FFF;
}

.group-upload-loading .first {
    left: 0px;
    top: 15px;
}

.group-upload-loading .second {
    left: 15px;
    top: 15px;
    -webkit-animation: drop2 1s linear infinite;
          animation: drop2 1s linear infinite;
}

.group-upload-loading .third {
    left: 0px;
    top: 0px;
    -webkit-animation: drop3 1s linear infinite;
          animation: drop3 1s linear infinite;
}

.group-upload-loading .fourth {
    left: 15px;
    top: 0px;
    -webkit-animation: drop4 1s linear infinite;
          animation: drop4 1s linear infinite;
}

.group-upload-loading .text {
    color: #fff;
    font-size: 12px;
    font-weight: 100;
    line-height: 30px;
}

@-webkit-keyframes bigSqrShrink {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    90% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
    }
}

@keyframes bigSqrShrink {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    90% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
    }
}
@-webkit-keyframes drop2 {
    0% {
        -webkit-transform: translateY(-50px);
                transform: translateY(-50px);
    }
    25% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
    100% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
}
@keyframes drop2 {
    0% {
        -webkit-transform: translateY(-50px);
                transform: translateY(-50px);
    }
    25% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
    100% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
}
@-webkit-keyframes drop3 {
    0% {
        -webkit-transform: translateY(-50px);
                transform: translateY(-50px);
    }
    50% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
    100% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
}
@keyframes drop3 {
    0% {
        -webkit-transform: translateY(-50px);
                transform: translateY(-50px);
    }
    50% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
    100% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
}
@-webkit-keyframes drop4 {
    0% {
        -webkit-transform: translateY(-50px);
                transform: translateY(-50px);
    }
    75% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
    100% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
}
@keyframes drop4 {
    0% {
        -webkit-transform: translateY(-50px);
                transform: translateY(-50px);
    }
    75% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
    100% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
}
/*---------------------- End Group Loading Uploading Block ----------------------*/
.size25 {
    width: 25px;
    height: 25px;
    display: inline-block;
}
.size25.opacity_class {
    opacity: 0;
    cursor: not-allowed;
    pointer-events: none;
}
.size25:before {
    display: inline-block;
    top: 8px;
    width: 10px;
    height: 10px;
}
.btn-previous.size25:before {
    left: 12px;
}
.btn-next.size25:before {
    right: 12px;
}
.btn-previous, .btn-next {
    border-radius: 50%;
    position: relative;
}
.btn-previous:before, .btn-next:before {
	box-shadow: -2px 2px 0 rgb(255,255,255);
	content: "";
    position: absolute;
}
.btn-previous:before {
    transform: rotate(45deg);
}
.btn-next:before {
    transform: rotate(225deg);
}
.loading_icon .wrap_load {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}
.loading_icon .wrap_load span {
    display: block;
    text-align: center;
}
.loading_icon .icon {
    animation: spin 1s linear infinite;
}
.loading_icon .text {
    color: #777777;
    font-size: 11px;
    font-weight: bold;
    margin-top: 12px;
}
.video-js .vjs-picture-in-picture-control {
    content: '';
    display: none;
}
.remove-notice-label{
    width: 22px;
    height: 22px;
    background-image: url(../img/common/format_label_warning.svg);
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 6px;
    left: 8px;
    display: block;
    z-index: 2;
}

.modal-bottom-info {
    height: 35px;
    background: #828282;
    display: none;
    position: relative;
    z-index: 10;
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.3);
    position: absolute;
    width: 100%;
    top: -30px;
    left: 0;
    transition: all 4s ease-in-out;
}

.modal-bottom-info span {
    padding-right: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 100%;
    font-family: Noto Sans JP;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: .5px;
    display: inline-block;
    text-align: right;
    align-items: center;
    color: #FFFFFF;
}

.modal-bottom-info span:before {
    content: url(../img/common/format_label_warning.svg);
    vertical-align: -50%;
}

/*Video info modal*/
#video-info-modal .modal-header {
    padding: 24px 0 20px 24px;
}

#video-info-modal .modal-dialog {
    width: 576px;
    max-width: none;
    font-family: 'Noto Sans JP';
    line-height: 150%;
    letter-spacing: 0.05em;
    max-height: calc(100vh - 96px);
}

#video-info-modal .modal-body {
    padding: 0 40px;
    max-height: calc(100vh - 242px);
    overflow-y: scroll;
}

#video-info-modal .modal-footer {
    height: 72px;
    padding: 20px 20px 20px 0;
}

#video-info-modal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#video-info-modal .modal-body::-webkit-scrollbar-thumb {
    background: #C6C6C6;
    border-radius: 6px;
    box-shadow: none;
}

#video-info-modal .modal-body::-webkit-scrollbar-track {
    background: #F4F4F4;
    border: none;
    border-radius: 6px;
    box-shadow: none;
}

#video-info-modal .table-label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #323232;
    font-weight: 700;
    font-style: normal;
}

#video-info-modal .table-label:not(.first) {
    margin-top: 5px;
}

#video-info-modal .video-info-detail-tbl tr {
    height: 32px;
}

#video-info-modal .video-info-detail-tbl th {
    background-color: #F4F4F4;
    border: solid 1px #D1D1D1;
    color: #5F5F5F;
    text-align: left;
    font-size: 12px;
    width: 155px;
    padding: 0 0 0 8px;
    vertical-align: middle;
    font-weight: 500;
}

#video-info-modal .video-info-detail-tbl td {
    border: solid 1px #D1D1D1;
    color: #5F5F5F;
    font-size: 12px;
    padding: 0 0 0 12px;
    word-wrap: break-word;
    word-break: break-all;
    vertical-align: middle;
    font-weight: 400;
}

#video-info-modal .video-info-detail-tbl {
    margin-bottom: 20px;
    user-select: text;
}

#video-info-modal .close-modal-btn {
    top: 24px;
    font-size: 12px;
    font-weight: 500;
    right: 30px;
    border: solid 1px #395370;
    color: #395370;
    background-color: white;
    width: 72px;
    position: absolute;
    line-height: 2.3;
    border-radius: 4px;
    display: block;
    z-index: 9999;
    cursor: pointer;
}

#video-info-modal #notice-video-info-message {
    color: #777777;
    text-align: right;
    font-size: 9px;
    margin-bottom: 25px;
}

#download-video-file-btn {
    cursor: pointer;
    color: white;
}

.loading_duplicate {
    text-align: center;
    background: #fff;
    border-radius: 4px !important;
}

.loading_duplicate .wrap_load {
    margin-top: 40%;
}

.loading_duplicate .text {
    font-weight: unset !important;
}

.un-shadow {
    box-shadow: unset !important;
}

.video-item .label-video {
    position: absolute;
    z-index: 10;
    max-width: 120px;
    top: 2px;
    left: 2px;
}

.video-item .label-video:hover {
    cursor: pointer;
}

.video-item .label-video .dropdown-toggle::after{
    display:none;
}

.video-item .label-video .dropdown-item {
    color: #777777;
    display: list-item;
    padding: 0px 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 31px;
    min-width: 215px;
}

.video-item .label-video li p {
    margin-top: 3px;
    border-top: 1px solid #777777;
}

.video-item .label-video .dropdown-item span.dot {
  height: 8px;
  width: 8px;
  background-color: #777;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.video-item .label-video .dropdown-item span.dot-non {
  margin-right: 18px;
}

.video-item .label-video .dropdown-item .label-content .icon {
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

.video-item .label-video li.disabled {
  cursor: default;
  pointer-events: none;
  padding: 0 10px;
}

.video-item .label-video .dropdown-item:hover {
    background: #FFDEDE;
}

.video-item .label-video .label-flag {
    color: #777777;
    font-size: 14px;
    display: block;
    font-style: normal;
    font-weight: 500;
    background: #FFFFFF;
    border: 1px solid #CFD0D2;
    border-radius: 2px;
    line-height: 30px;
    padding: 0 7px 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-item .label-video .label-name {
    padding-left: 3px;
}

.video-item .label-video .dropdown-menu {
    padding: 0;
    min-width: 180px;
    overflow: hidden;
}

.video-item .label-video .un-border {
    border: unset;
}

.video-item .label-video .color-flag {
    padding: 0 7px
}

.top-video-filter .disabled {
    pointer-events:none;
    opacity:0.3;
}

#add-label-project .select .disabled {
    pointer-events:none;
    opacity:0.7;
}

.disabled-label {
    pointer-events: none;
    opacity: 30%;
}

#embed-tag-modal .modal-dialog {
    width: calc(100vw - 120px);
    max-width: 1030px;
    height: calc(100vh - 92px);
}

#embed-tag-modal .close-modal-btn {
    top: 24px;
    font-size: 12px;
    font-weight: 500;
    right: 24px;
    border: solid 1px #395370;
    color: #395370;
    background-color: white;
    width: 72px;
    position: absolute;
    line-height: 2.3;
    border-radius: 4px;
    display: block;
    z-index: 9999;
    cursor: pointer;
}

#embed-tag-content .modal-body {
    height: calc(100vh - 92px);
    padding: 24px;
}

#embed-tag-content .modal-body iframe {
    height: calc(100% - 42px);
}

#embed-tag-content .modal-body > .modal-title {
    padding: 2px 5px 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #474747;
}

.list-project-body {
    max-height: 250px;
    overflow-y: scroll;
    overflow-x: hidden;
}

#stop-download-modal .modal-dialog,
#notice-message-modal .modal-dialog,
#cancel-download-modal .modal-dialog {
    width: 700px;
}

#notice-user-modal .modal-dialog {
    max-width: 608px;
}

/*Style narrator modal*/
#narrator-confirmation-modal .modal-dialog {
    max-width: none;
    width: 392px;
}
#narrator-confirmation-modal.modal .modal-header {
    user-select: none;
}
#narrator-confirmation-modal.modal .modal-footer {
    padding: 0px 30px 13px;
    user-select: none;
    display: flex;
    flex-direction: column;
}
#narrator-confirmation-modal .btn-red {
    margin-bottom: 10px;
    width: 100%;
    transition: all 0.3s;
}
#narrator-confirmation-modal .btn-white {
  outline: none;
  margin-bottom: 10px;
  width: 100%;
  transition: all 0.3s;
  color: #292828!important;
  margin-left: 0;
}
#narrator-confirmation-modal .modal-dialog {
    max-width: none;
    width: 424px;
}
#narrator-confirmation-modal .narrator-help-text {
    color: #2C2C2C;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    margin: 20px 0 18px;
    user-select: none;
}
#narrator-confirmation-modal .btn-red {
    color: white!important;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    margin-left: 0;
}
#narrator-confirmation-modal a.disabled {
    opacity: 0.2;
    pointer-events: none;
}
#narrator-confirmation-modal .btn-red img {
    margin-top: -3px;
}

#narrator-confirmation-modal .narrator-no-video {
    background: #EAEAEA;
    border-radius: 4px!important;
}

#narrator-confirmation-modal .narrator-no-video {
    width: 100%;
    height: 100%;
    padding-top: 100px;
    padding-bottom: 96px;
    text-align: center;
}

#narrator-confirmation-modal .narrator-no-video .icon-warning {
    margin-left: -25px;
}

#narrator-confirmation-modal .narrator-no-video .text-warning {
    color: #777777!important;
    font-weight: 500;
    line-height: 21px;
    font-size: 14px;
    margin-top: 39px;
    user-select: none;
}
#narrator-confirmation-modal .hidden {
    display: none!important;
}
.new-feature {
    color: #FF6450;
    font-weight: 500;
    font-size: 10px;
    line-height: 14px;
    margin-left: 5px;
    text-transform: uppercase;
}
#narrator-edit-video-container .new-feature {
    top: 5px;
    width: auto;
    color: #FF6450;
    font-size: 8px;
    line-height: 12px;
    position: absolute;
    text-transform: uppercase;
}
/*End style narrator modal*/
.btn-disable {
    pointer-events: none;
    opacity: 0.2;
    user-select: none;
}

.radio-input-disabled {
    pointer-events: none;
    opacity: 0.5;
    user-select: none;
}

/* RADIO BUTTON START */
#download-thumbnail-video-modal .modal-body .radio-check {
    color: #2C2C2C;
    font-size: 13px;
    text-decoration: none;
    margin-right: 15px;
}
#download-thumbnail-video-modal .modal-body .radio-check:first-child {
    margin-left: 30px;
}
#download-thumbnail-video-modal .modal-body .radio-check:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: solid 2px #D1D1D1;
    margin-right: 4px;
    transform: translateY(-1px);
}
#download-thumbnail-video-modal .modal-body .radio-check.active:before {
    content: '';
    background: url('../img/common/radio.svg');
    background-size: 16px;
    border: none;
}
#download-thumbnail-video-modal .modal-body .modal-body-right-top .reset-scene-thumbnails {
    text-align: right;
}
#download-thumbnail-video-modal .modal-body .modal-body-right-top .reset-scene-thumbnails .reset-scene-thumbnails-btn{
    cursor: pointer;
}

#download-thumbnail-video-modal .modal-body .modal-body-right-top .thumbnail-list-container {
    width: 482px;
    height: 244px;
    overflow-y: scroll;
    background: #F3F6F7;
    padding-top: 8px;
    padding-left: 2px;
    margin-left: 0;
    margin-right: 0;
}

#download-thumbnail-video-modal .modal-body .modal-body-right-top .thumbnail-list-container .thumbnail-item {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 5px;
    text-align: center;
    background-color: white;
    margin: 0 0 6px 6px;
    padding-left: 0;
    padding-right: 0;
}

#download-thumbnail-video-modal .modal-body .modal-body-right-top .thumbnail-list-container .camera {
    border: 1px solid #6A7E94;
    box-sizing: border-box;
    cursor: pointer;
}

#download-thumbnail-video-modal .modal-body .modal-body-right-top .thumbnail-list-container .camera div {
    top: 20px;
    position: absolute;
    left: 25px;
}

#download-thumbnail-video-modal .modal-body .modal-body-right-top .thumbnail-list-container .thumbnail-item canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#download-thumbnail-video-modal .modal-body .modal-body-right-top .thumbnail-list-container .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#download-thumbnail-video-modal .modal-body .modal-body-right-top .thumbnail-list-container .thumbnail-item a {
    margin-right: 6px;
    padding-top: 0;
}

#download-thumbnail-video-modal a.select-shared-thumbnails-btn:hover {
    opacity: 0.75;
}

#download-thumbnail-video-modal a.select-shared-thumbnails-btn {
    line-height: 2.1;
    font-size: 12px;
    color: #395370;
    width: 60px;
    border: solid 1px #395370;
    background-color: white;
}

#download-thumbnail-video-modal .generate-share-thumbnail-control-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

#download-thumbnail-video-modal .separator {
    background-color: #CDD4DB;
    height: 1px;
    margin-bottom: 37px;
}

/* RADIO BUTTON END */
.google-oauth-button-base {
    width: auto;
    padding:0;
    margin:0;
    background:none;
    border:0;
    font-size:0;
    line-height:0;
    overflow:visible;
    cursor:pointer;
}

#download-request-log-modal .title p {
    font-weight: 500;
    font-size: 14px;
    color: #141414;
    line-height: 21px;
}

#download-request-log-modal .sub-title p{
    font-weight: 500;
    font-size: 14px;
    color: #141414;
    line-height: 21px;
    margin-top: 27px;
}

#download-request-log-modal .date-selection-container .select {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 30px;
}

.hidden-important {
   display:none!important;
}
.download_pdf {
    width: 120px;
    height: 20px;
    background: #141414;
    border-radius: 2px;
    font-size: 16px;
    color: #fff;
}

.format-detail-header-wrap {
    display: flex;
    justify-content: space-between;
}

.disable-select {
    user-select: none!important; /* supported by Chrome and Opera */
   -webkit-user-select: none!important; /* Safari */
   -khtml-user-select: none!important; /* Konqueror HTML */
   -moz-user-select: none!important; /* Firefox */
   -ms-user-select: none!important; /* Internet Explorer/Edge */
}

#download-progress {
    background: #141414;
    box-sizing: border-box;
    border-radius: 4px;
    height: 48px;
    padding: 13px 19px;
    position: absolute;
    top: 8px;
    left: 40%;
    width: 380px;
    font-size: 14px;
    display: flex;
    align-items: center;
    z-index: 9999;
}

#header #download-progress {
    top: 1px;
}

#download-progress .title-progress {
    color: #fff;
}

#download-progress .cancel-download {
    color: #FF6450;
    position: absolute;
    right: 10px;
}

#download-progress #icon-progress-bar {
    width: 20px;
    height: 20px;
    float: left;
    margin-right: 15px;
}
#download-progress .close-title-progress {
    position: absolute;
    right: 10px;
    cursor: pointer;
    width: 21px;
    text-align: center;
}
#notice-message-modal .text_note,
#cancel-download-modal .text_note {
    color: #2c2c2c;
    font-weight: 500;
}

.format_box {
    display: flex;
    flex-wrap: wrap;
}

.format_box-wrap {
    display: flex;
}

.format-tag {
    border-radius: 4px;
    text-align: center;
    width: max-content;
    height: 20px;
    font-weight: 700;
    font-size: 10px;
    line-height: 6px;
    padding: 6px 10px 6px 10px;
    margin: 0 6px 6px 0;
}

.ml-half {
    margin-left: 0.5rem;
}

.mr-half {
    margin-right: 0.5rem;
}

.mr-min {
    margin-right: 0.2rem;
}

.ml-min {
    margin-left: 0.2rem;
}

.d-flex {
    display: flex !important;
}


.ajax_render_slider {
    width: 100%;
    margin-left: -24px;
    overflow: hidden;
}

#download-video-with-preview-modal .detail-thumbnail {
    display: none;
}

#download-video-with-preview-modal.r-system-download .detail-thumbnail {
    display: block;
    margin-bottom: 10px;
    max-width: 240px;
}

#download-video-with-preview-modal.r-system-download .slide-indicator {
    display: none;
    margin-top: 5px;
}

#download-video-with-preview-modal.r-system-download .thumbnail-slider-container .slide-indicator.show {
    display: flex!important;
}


#download-video-with-preview-modal.r-system-download .thumbnail-slider-container .slide-indicator {
    display: none;
}

#download-video-with-preview-modal.r-system-download .slide-indicator {
    display: flex;
    max-width: 240px;
    overflow-x: auto;
}

#download-video-with-preview-modal.r-system-download .slide-indicator .preview-img {
    display: flex;
}

#download-video-with-preview-modal.r-system-download .slide-indicator .preview-img li {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    position: relative;
    cursor: pointer;
}

#download-video-with-preview-modal.r-system-download .slide-indicator .preview-img img.active {
    border: 2px solid #DE5947;
}

#download-video-with-preview-modal.r-system-download .slide-indicator .preview-img li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    border: 1px solid #E8E8E8;
}

#download-video-with-preview-modal .preview-ratio {
    display: none;
}

#download-video-with-preview-modal.r-system-download .preview-ratio {
    display: flex;
    justify-content: center;
    font-size: 12px;
    margin-top: 10px;
}

#exceed-limit-alert-download-modal-r-format .ajax_render_slider {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
    background: #F4F4F4;
    border-top: 1px solid #C6C6C6;
}

#exceed-limit-alert-download-modal-r-format .ajax_render_slider .detail-content-tab {
    display:none;
}
.download-video-modal .detail-content-slider {
    background: #F4F4F4;
    width: 100%;
    position: absolute;
    bottom: 0px;
    z-index: 100;
    overflow: hidden;
}

.restric_title_r_format {
    font-family: 'Roboto', 'Noto Sans JP';
    font-weight: 500;
    font-size: 12px;
    color: #545454;
    line-height: 18px;
    padding: 10px 24px 3px 24px;
}
.restric_title_r_format .count_select_format {
    font-weight: 700;
    font-size: 16px;
    color: #545454;
    line-height: 24px;
}
.restric_title_r_format .red_span {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    color: #FF0000;
}

#exceed-limit-alert-download-modal-r-format .ajax_render_slider .detail-content-slider {
    position: relative;
    background: none;
    border: none;
    height:209px;
}

.download-video-modal .detail-content-slider {
    height: 143px;
    min-height: 143px;
    border-top: 1px solid #C6C6C6;
}

.download-video-modal .detail-content-tab {
    background: #F4F4F4;
    width: 104px;
    padding: 5px;
    position: absolute;
    bottom: 142px;
    left: 24px;
    border-top: 1px solid #C6C6C6;
    border-left: 1px solid #C6C6C6;
    border-right: 1px solid #C6C6C6;
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    z-index: 101;
}

.download-video-modal .detail-content-tab:hover {
    background: #C6C6C6;
}

.download-video-modal .detail-content-tab a {
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    text-decoration: none;
    color: #545454;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-video-modal .detail-content-slider .detail-thumbnail {
    margin-left: 12px;
    display: flex;
    width: fit-content;
}

.download-video-modal .detail-content-slider .detail-thumbnail {
    margin-top: 12px;
}

.download-video-modal .detail-content-slider .detail-thumbnail img {
    width: 96px;
    height: 96px;
}

.download-video-modal .detail-content-slider .detail-thumbnail img {
    height: 88px;
}

.download-video-modal .detail-content-slider .detail-thumbnail img {
    width: 100%;
}

.download-video-modal .detail-content-slider .detail-thumbnail .thumbnail-item {
    margin: 0 6px;
}

.download-video-modal .detail-content-slider .detail-thumbnail .thumbnail-item {
    width: 104px;
    position: relative;
    cursor: pointer;
}

.download-video-modal .detail-content-slider .detail-thumbnail .detail-thumbnail-description {
    margin-left: 0;
    font-size: 11px;
}

.download-video-modal .detail-content-slider .detail-thumbnail .detail-thumbnail-description {
    font-weight: 500;
    line-height: 17px;
    margin-top: 4px;
}

.download-video-modal .detail-content-slider .thumbnail-description-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Roboto', 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.05em;
    font-feature-settings: 'palt' on;
    margin-bottom: 1px;
    line-height: 17px;
 }

.download-video-modal .detail-content-slider .detail-thumbnail .detail-thumbnail-description > div {
    margin-bottom: 1px;
}

.download-video-modal .detail-content-slider .detail-thumbnail .detail-thumbnail-description .thumbnail-description-ratio-resolution {
    margin-bottom: 8px;
}
.download-video-modal .detail-content-slider .detail-thumbnail img.selected {
    cursor: default;
    outline-offset: -5px;
    outline: 5px solid #FF6450;
}

.download-video-modal .detail-content-slider .detail-thumbnail .thumbnail-item:not(.selected):hover {
    cursor: pointer;
    opacity: 0.7;
    transition-duration: .2s;
}

.download-video-modal .detail-content-slider .detail-thumbnail .thumbnail-scroll-left,
.download-video-modal .detail-content-slider .detail-thumbnail .thumbnail-scroll-right {
    width: 32px;
    height: 108px;
    position: absolute;
    right: 0;
    display: none;
    z-index: 1;
    cursor: pointer;
}
#confirm-before-download-modal-r-format .ajax_render_slider .detail-content-slider .detail-thumbnail .thumbnail-scroll-left,
#exceed-limit-alert-download-modal-r-format .ajax_render_slider .detail-content-slider .detail-thumbnail .thumbnail-scroll-left,
#exceed-limit-alert-download-modal-r-format .ajax_render_slider .detail-content-slider .detail-thumbnail .thumbnail-scroll-right {
    top: 14px;
    height: 185px;
    display: none;
}

.download-video-modal .detail-content-slider .detail-thumbnail .thumbnail-scroll-left,
.download-video-modal .detail-content-slider .detail-thumbnail .thumbnail-scroll-right {
    top: 30px;
}

.download-video-modal .detail-content-slider .detail-thumbnail .thumbnail-scroll-left {
    background: #8D8D8D url(../img/common/icon-single-chevron-left.svg) no-repeat center;
    left: 0;
}

.download-video-modal .detail-content-slider .detail-thumbnail .thumbnail-scroll-right {
    right: 0;
    background: #8D8D8D url(../img/common/icon-single-chevron-rigth.svg) no-repeat center;
}

.download-video-modal .detail-content-slider .detail-thumbnail .thumbnail-scroll-right:hover,
.download-video-modal .detail-content-slider .detail-thumbnail .thumbnail-scroll-left:hover {
    opacity: 0.6;
}

.icon-single-chevron-up,
.icon-single-chevron-down {
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    z-index: 1;
}

.icon-single-chevron-up,
.icon-single-chevron-down {
    width: 14px;
    height: 14px;
    background-size: 14px;
}

.icon-single-chevron-up {
    background-image: url(../img/common/icon-single-chevron-up.svg);
}

.icon-single-chevron-down {
    background-image: url(../img/common/icon-single-chevron-down.svg);
}

.ml-half {
    margin-left: 0.5rem;
}

.mr-half {
    margin-right: 0.5rem;
}

#download-video-with-preview-modal.r-system-download .r-support-system {
    color: #FF8B7C;
    display: flex;
    font-size: 11px;
    line-height: 20px;
    margin-top: 0.1rem;
    width: 160px;
    display: flex;
    margin-left: 5px;
}

#download-video-with-preview-modal.r-system-download .r-support-system > * {
    padding-left: 1.1rem !important;
}

#download-video-with-preview-modal.r-system-download .icon-r-support-system {
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-image: url(../img/common/icon-r-support.svg);
    padding: 11px 5px;
}

.question-detail,
.icon-r-support-system,
.icon-single-chevron-up,
.icon-single-chevron-down {
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    z-index: 1;
}

.question-detail {
    padding: 11px;
    width: 18px;
    height: 18px;
    background-size: 18px;
    background-image: url(../img/common/icon-info-support.svg);
}

.detail-content-slider input[type=checkbox] + label {
    padding-left: 20px;
    font-size: 14px;
    color: #1B1B1B;
    letter-spacing: 0.06em;
    position: absolute;
    top: 8px;
    left: 8px;
    height: 22px;
    width: 22px;
    pointer-events: none;
}

.detail-content-slider input[type=checkbox] + label:before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 1px solid #a1a1a1;
    border-radius: 3px;
    position: absolute;
    top: 3px;
    left: 0;
    cursor: pointer;
}

.detail-content-slider input[type=checkbox]:checked + label:before {
  background: #ff6450;
  border: 1px solid #ff6450;
}

.detail-content-slider input[type=checkbox]:checked + label:after {
    content: "";
    display: block;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 5px;
    left: 7px;
}

.detail-content-slider input[type="checkbox"] {
    display: none;
}

.format_select {
    width: 200px;
}

.format_select .select .option li.active,
.format_select .select .option li:hover {
    background: #F5F5F5;
}

.format_select .select .selected.active {
    border: 1px solid #9CA9B7;
}

.disabled-btn {
    background-color: #cccccc;
    color: #ffffff;
    border-color: #ffffff;
    cursor: default;
    user-select: none;
    pointer-events: none;
}

.red_span {
    color: #FF1D00;
}

#download-video-file-btn-disabled {
    pointer-events: auto;
    display: none;
}

.mt40 {
    margin-top: 40px;
}

.spinner-icon {
    display: inline-block;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-icon .75s linear infinite;
    animation: spinner-icon .75s linear infinite;
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}
@-webkit-keyframes spinner-icon {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-icon {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.tooltipster-content {
    text-align: center;
}

.modal-backdrop.show {
    opacity: .85;
}

#display-setting-modal .modal-content {
    width: 466px;
}

#display-setting-modal .modal-header {
    padding: 24px 24px 18px;
    font-size: 20px;
    line-height: 30px;
    color: #1B1B1B;
}

#display-setting-modal .modal-header h4 {
    color: #1B1B1B;
    font-size: 20px;
}

#display-setting-modal .modal-body {
    padding: 0 24px 0;
    color: #5F5F5F;
}
#display-setting-modal .modal-body p {
    font-size: 14px;
    line-height: 21px;
}

#display-setting-modal .modal-body .setting-content {
    padding: 43px 24px 28px 24px;
}

#display-setting-modal .modal-body .setting-content label.checkbox {
    display: block;
    font-size: 14px;
    line-height: 21px;
    color: #5F5F5F;
}

#display-setting-modal .checkbox.not-all input:checked+span:before {
    border: none;
    background: url(../img/common/check_all.svg);
    background-size: 100%;
}

#display-setting-modal .modal-body .setting-content label.checkbox input+span::before {
    float: right;
    margin-top: 2px;
}

#display-setting-modal .modal-body .setting-content .break-line {
    margin: 16px 0;
    border-top: 1px solid #E8E8E8;
}

#display-setting-modal .modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #E8E8E8;
}

#display-setting-modal .modal-footer .btn-red {
    background: #DE5947;
    border: solid 1px #DE5947;
}

#display-setting-modal .modal-footer a.btn-white {
    color: #5F5F5F;
    background: #F4F4F4;
    border: 1px solid #A4A4A4;
}

#to-redisplay .modal-dialog{
    max-width: unset!important;
}

#show-explanatory .modal-header,
#to-redisplay .modal-header {
    padding: 25px 25px 18px;
    font-size: 20px;
    line-height: 30px;
    color: #323232;
}

#to-redisplay .modal-header h4 {
    font-size: 20px;
    color: #323232;
}

#to-redisplay .modal-content {
    width: 735px;
}

#show-explanatory .modal-body p,
#to-redisplay .modal-body p {
    font-size: 14px;
    color: #5F5F5F;
}

#show-explanatory .modal-body .setting-content,
#to-redisplay .modal-body .setting-content {
    margin: 25px 0 23px;
    text-align: center;
}

#show-explanatory .modal-body .setting-content .r_compatible_video_guide {
    min-width: 397px;
    min-height: 224px;
    max-height: 428px;
    height: 100%;
    width: 100%;
}

#to-redisplay .modal-body .setting-content img {
    width: 437px;
    height: 288px;
}

#to-redisplay .modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #E8E8E8;
    justify-content: end;
}


#show-explanatory .modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #E8E8E8;
    justify-content: space-between;
}

#show-explanatory .modal-footer a.btn-white,
#to-redisplay .modal-footer a.btn-white {
    background: #F4F4F4;
    border: 1px solid #A4A4A4;
    color: #5F5F5F;
}

#move-message-shared-project .modal-dialog,
#delete-message-shared-project .modal-dialog,
#add-label-project-share .modal-dialog,
#create-message-shared-project .modal-dialog,
#modify-message-shared-project .modal-dialog,
#create-message-shared-folder .modal-dialog,
#modify-message-shared-folder .modal-dialog,
#delete-message-shared-folder .modal-dialog {
    width: 432px;
}

#delete-folder-confirm-modal .modal-header,
#delete-project-confirm-modal .modal-header {
    padding: 25px;
}

#delete-folder-confirm-modal .modal-dialog,
#delete-project-confirm-modal .modal-dialog {
    width: 492px;
    font-family: 'Roboto', 'Noto Sans JP';
}

#delete-folder-confirm-modal .modal-body,
#delete-project-confirm-modal .modal-body {
    padding: 0 25px 50px 25px;
}

#delete-folder-confirm-modal .message,
#delete-project-confirm-modal .message {
    color: #5F5F5F;
    font-feature-settings: 'palt' on;
}

#add-folder-name .modal-dialog,
#edit-folder-name .modal-dialog,
#add-project-name .modal-dialog,
#edit-project-name .modal-dialog {
    width: 448px;
    font-family: 'Noto Sans JP';
}

#delete-message-shared-project .modal-dialog,
#create-message-shared-project .modal-dialog,
#create-message-shared-folder .modal-dialog,
#delete-folder-confirm-modal .modal-dialog,
#delete-message-shared-folder .modal-dialog{
    width: 432px;
    font-family: 'Noto Sans JP';
}

#delete-message-shared-project .modal-body,
#create-message-shared-project .modal-body,
#create-message-shared-folder .modal-body,
#delete-message-shared-folder .modal-body {
    min-height: 114px;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    font-style: normal;
    color: #5F5F5F;
    letter-spacing: 0.05em;
    font-feature-settings: 'palt' on;
}

#materials .container {
    max-width: 100%;
}

#add-folder-name .modal-body,
#edit-folder-name .modal-body,
#add-project-name .modal-body,
#edit-project-name .modal-body {
    min-height: 130px;
    padding: 0 40px;
}

#add-project-name.root-project .modal-dialog,
#add-folder-name.root-folder .modal-dialog,
#setting-shared-folder .modal-dialog {
    width: 690px;
    font-family: 'Noto Sans JP';
    max-width: none;
}

#add-folder-name.root-folder .modal-body,
#add-project-name.root-project .modal-body {
    min-height: 186px;
}

#setting-shared-folder  .modal-body {
    min-height: 114px;
    margin-bottom: 45px;
}

.video_info_table {
    border: 1px solid #E8E8E8;
    border-bottom: none;
    display: table;
    width: 384px;
}

#materials .container {
    max-width: 100%;
}

#cancel-generating-video .modal-dialog {
    width: 432px!important;
    min-height: 248px;
}

#cancel-generating-video .modal-content {
    min-height: 248px;
}
#cancel-generating-video .modal-body {
    min-height: 96px;
    padding: 0 24px;
}

#catchcopy-generation-modal .modal-dialog {
    width: 512px;
    max-width: none;
}

#catchcopy-generation-modal p.message {
    margin: 20px 0 20px 0;
}

.select ul.option::-webkit-scrollbar,
.custom-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.select ul.option::-webkit-scrollbar-thumb,
.custom-scroll::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 6px;
}

.select ul.option::-webkit-scrollbar-thumb:hover,
.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #777;
}

.disabled-all-events {
    cursor: not-allowed;
    pointer-events: none;
}

.not-allowed-pointer {
    cursor: not-allowed;
}

.disable-up-down-menu-item {
    opacity: 0.4;
    pointer-events: none;
}

.disabled-maintenance-mode {
    cursor: not-allowed!important;
    pointer-events: none!important;
    opacity: 0.4!important;
}
