:root{
    --color-default: #e4332d;
}
body{
    font-size: 17px;
}

.mt10{
    margin-top: 10px;
}

.mt20{
    margin-top: 20px;
}

.mt30{
    margin-top: 30px;
}

.mt40{
    margin-top: 40px;
}

.mt50{
    margin-top: 50px;
}

.mt60{
    margin-top: 60px;
}

.mt70{
    margin-top: 70px;
}

.mt80{
    margin-top: 80px;
}

.mt90{
    margin-top: 90px;
}

.mt100{
    margin-top: 100px;
}

.font-10{
    font-size: 10px !important;
}

.font-12{
    font-size: 12px !important;
}

.font-14{
    font-size: 14px !important;
}

.font-16{
    font-size: 16px !important;
}

.font-18{
    font-size: 18px !important;
}

.font-20{
    font-size: 20px !important;
}

.font-22{
    font-size: 22px !important;
}

.font-24{
    font-size: 24px !important;
}

.font-26{
    font-size: 26px !important;
}

.font-28{
    font-size: 28px !important;
}

.font-30{
    font-size: 30px !important;
}

.text-center{
    text-align: center;
}

.text-left{
    text-align: left;
}

.text-right{
    text-align: right;
}

.text-justify{
    text-align: justify;
}

.popup{
    position: fixed;
    background: rgba(0,0,0,0.40);
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    z-index: 10;
    display: none;
}

.popup-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0.5rem;
    width: 70%;
    height: 80%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    height: 30px;
    border-bottom: 1px solid #d7d7d7;
}

.popup-header .title{
    font-size: 24px;
    color: var(--color-default);
}

.close-popup{
    cursor: pointer;
}

.popup-body{
    background: transparent;
    display: flex;
    /*flex-direction: column;*/
    height: calc(100% - 90px);
    justify-content: center;
}

.popup-body .content{
    width: 50%;
    height: 100%;
    padding: 0 20px;
    margin: 20px 0;
    color: #000000;
    line-height: 1.5;
    overflow-x: hidden;
}

/*.popup-body .content_info{*/
/*    overflow-x: hidden;*/
/*    overflow-y: auto;*/
/*}*/

.content_info img{
    max-width: 100%;
    max-height: max-content;
}

.content_info p:first-child{
    margin-top: 0;
}

.content_info p:last-child{
    margin-bottom: 0;
}

.content_video/*, .content_image*/{
    overflow: hidden !important;
}

.content_image{
    overflow: hidden !important;
}

.popup-body div.active{
    display: block;
}

.popup-footer{
    height: 60px;
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.btn_action{
    width: 40px;
    height: 40px;
    cursor: pointer;
}

#btn_video{
    background-image: url("../../external/images/video.svg");
}

#btn_image{
    background-image: url("../../external/images/image.svg");
}

#btn_info{
    background-image: url("../../external/images/info.svg");
}

#btn_video.active{
    background-image: url("../../external/images/video_active.svg");
}

#btn_image.active{
    background-image: url("../../external/images/image_active.svg");
}

#btn_info.active{
    background-image: url("../../external/images/info_active.svg");
}

.btn_action:hover{
    scale: 1.2;
}

.hidden{
    display: none !important;
}

/*.slick-prev{*/
/*    left: 0 !important;*/
/*    z-index: 1;*/
/*}*/

/*.slick-next{*/
/*    right: 0;*/
/*}*/

.slick-prev:before{
    content: url("../../external/images/prev.svg");
}

.slick-next:before{
    content: url("../../external/images/next.svg");
    opacity: 1;
}

.slick-slider{
    margin-bottom: 0;
}

.g_slider_img {
    width:100%;
    height: 100%;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.g_slider_img .slider-for, .g_slider_img .slick-list, .g_slider_img .slick-track{
    height: 100%;
}

.g_slider_img .slider-for{
    height: 80%;
    background: #9e9e9e2e;
}

.g_slider_img .slider-for img{
    height: 100%;
    object-fit: contain;
}

.g_slider_img .slider-nav{
    height: calc(100% - (80% + 20px));
    width: 90%;
    margin-left: 5%;
}

.g_slider_img .slider-nav img{
    /*height: 80px;*/
    object-fit: contain;
    background: #9E9E9E;
}



.popup-check-pass{
    /*position: fixed;*/
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    z-index: 4;
    display: none;
}

.popup-check-pass .popup-content{
    position: absolute;
    z-index: 4;
    bottom: 100px;
    top: unset;
    left: 0;
    transform: unset;
    border-radius: 0.5rem;
    width: unset;
    height: unset;
    display: flex;
    flex-direction: row;
    background: transparent;
    align-items: center;
}

.form-password input{
    width: 120px;
    height: 20px;
    padding: 10px 0px;
    text-indent: 20px;
    float: left;
    font-size: 13px;
    border: none;
    border-top-style: none;
    color: white;
    outline: none;
    background: transparent;
}

.form-password input::placeholder{
    color: #ffffff;
}

.form-password button{
    overflow: visible;
    right: 0;
    border: 0;
    padding: 0;
    cursor: pointer;
    height: 40px;
    width: 80px;
    color: #000000;
    text-transform: uppercase;
    border-radius: 40px;
    background-color: white;
}

.popup-check-pass .close-popup{
    position: absolute;
    right: 15px;
    top: 15px;
    width: 40px;
}

.form-password {
    background: var(--color-default);
    width: max-content;
    backdrop-filter: blur(4px);
    border-radius: 40px;
    display: flex;
    backdrop-filter: blur(4px);
}

.form-password i{
    color: var(--color-default);
}

.popup-check-pass .note{
    background: #9E9E9E;
    padding: 10px;
    border-radius: 10px;
}

.popup-check-pass .note a{
    color: var(--color-default);
}

.content_info_lock {
    height: 100%;
    background: #ffffff94;
    padding: 5px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info_received span{
    color: var(--color-default);
    text-transform: uppercase;
    font-weight: bold;
}

.info_received a{
    color: red !important;
    text-decoration: none;
}

.info_received{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info_received span:first-child{
    color: #000000;
    font-weight: 500;
}

.content_info_lock .header{
    color: var(--color-default);
    font-weight: 500;
    font-size: 20px;
}

.content_info_lock .body{
    overflow: auto;
}

.content_info_lock .footer{
    background: var(--color-default);
    color: #ffffff;
    width: max-content;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#btn_show_lock{
    background: red;
    padding: 8px 11px;
    cursor: pointer;
}

.popup-check-pass .hide{
    left: -210px;
}