.t-popup{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    visibility: visible;
    z-index: -5;
    transition: opacity 0.3s ease-in, z-index 0.3s linear;
}
.t-popup.active{
    z-index: 999;
    opacity: 1;
}
.t-popup__overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease-in;
    padding: 20px;
    max-height: 100vh;
    overflow-y: auto;
}
.t-popup-view{
    width: 1050px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.t-popup-view.m-success{
    width: auto;
    max-width: 600px;
    display: none;
}
.t-popup-view.m-success .t-popup-view__wrap{
    padding: 60px 30px;
}
.t-popup-view__wrap{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
}

.t-popup-view__info{
    width: 250px;
    min-width: 250px;
    font-size: 15px;
    line-height: 19px;
    color: #000000;
    background: #fff;
    padding: 14px 24px;
}

.t-popup-view__info h4{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 6px;
    font-family: 'HyundaiBold';
}
.t-popup-view__info p{
    margin: 0 0 10px 0;
}
.t-popup-view__img{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px 45px 20px 20px;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.t-popup-view__top{
    font-size: 75px;
    line-height: 93px;
    font-family: 'HyundaiBold';
    color: #fff;
    padding-left: 25px;
    max-width: 590px;
}
.t-popup__close{
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    font-size: 13px;
    line-height: 16px;
    color: #000000;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    position: absolute;
    right: 0;
    bottom: 100%;
    text-decoration: none;
    padding: 2px 8px;
}
.t-popup__close:after{
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 6px;
    background: url("data:image/svg+xml,%3Csvg width='7' height='7' viewBox='0 0 7 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.07693 6.99998L4.62967e-06 5.92306L5.92308 0L7 1.07692L1.07693 6.99998Z' fill='black'/%3E%3Cpath d='M7 5.92308L5.92307 7L0 1.07694L1.07692 2.19682e-05L7 5.92308Z' fill='black'/%3E%3C/svg%3E%0A") center no-repeat;
}


.t-popup-view__check{
    line-height: 1;
}
.t-popup-view__check input[type="checkbox"]:not(:checked),
.t-popup-view__check input[type="checkbox"]:checked{
    position: absolute;
    left: -9999px;
}

.t-popup-view__check input[type="checkbox"]:not(:checked) + label,
.t-popup-view__check input[type="checkbox"]:checked + label{
    position: relative;
    cursor: pointer;
    padding-left: 28px;
    font-size: 15px;
    line-height: 19px;
    color: #FFFFFF;
}

.t-popup-view__check input[type="checkbox"]:not(:checked) + label:before,
.t-popup-view__check input[type="checkbox"]:checked + label:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    border: 1px solid #00AACA;
    background: #00AACA;
    cursor: pointer;
    z-index: 5;
}
.t-popup-view__check input[type="checkbox"]:not(:checked) + label:after,
.t-popup-view__check input[type="checkbox"]:checked + label:after {
    content: '';
    background: url("data:image/svg+xml,%3Csvg width='13' height='11' viewBox='0 0 13 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.74239L4.25754 8.99997L12.2575 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E") center no-repeat;
    width: 13px;
    height: 11px;
    display: inline-block;
    position: absolute;
    top: 4px;
    left: 2px;
    z-index: 10;
}
.t-popup-view__check input[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
}
.t-popup-view__check input[type="checkbox"]:checked + label:after {
    opacity: 1;
}



.t-popup-select{
    padding-top: 10px;
}
.t-popup-select__title{
    font-size: 14px;
    line-height: 17px;
    font-family: 'HyundaiBold';
    margin-bottom: 6px;
}
.t-popup-select__item{
    margin-bottom: 11px;
}

.t-popup-select__item .jq-selectbox {z-index: 1 !important}

.t-popup-select  input[type="text"],
.t-popup-select  input[type="email"],
.t-popup-select  input[type="password"]{
    text-align: left;
    border: 1px solid #E4DCD3;
    width: 100%;
    font-size: 14px;
    padding: 7px 10px;
}

.t-popup-select .page-select.jq-selectbox .jq-selectbox__select {
    line-height: 35px;
    padding: 0 35px 0 6px;
    height: 35px;
}
.t-popup-select__link{
    display: block;
    border: 0;
    background: #002C5F;
    color: #fff;
    padding: 15px 7px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    text-decoration: none;
}


.t-popup-select ::-webkit-input-placeholder {
    color: #00aad2;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }

.t-popup-select ::-moz-placeholder {
    color: #767676;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }

.t-popup-select :-moz-placeholder {
    color: #767676;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }

.t-popup-select :-ms-input-placeholder {
    color: #767676;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }

.t-popup-select input[type="text"]:focus {
    border: 1px solid #00aad2;
    outline: none;
}

.t-popup-select :focus::-webkit-input-placeholder {
    color: #00aad2; }

.t-popup-select :focus::-moz-placeholder {
    color: transparent; }

.t-popup-select :focus:-moz-placeholder {
    color: transparent; }

.t-popup-select :focus:-ms-input-placeholder {
    color: transparent; }


@media screen and (max-width: 1100px){
    .t-popup__overlay{
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .t-popup-view{
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
}

@media screen and (max-width: 900px){
    .t-popup-view__top {
        font-size: 55px;
        line-height: 63px;
        padding-left: 0;
    }
    .t-popup-view__img{
        padding: 20px;
    }
}

@media screen and (max-width: 600px){
    .t-popup-view__wrap{
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .t-popup-view__img {
        width: 100%;
        -webkit-box-flex: inherit;
        -webkit-flex: inherit;
        -ms-flex: inherit;
        flex: inherit;
        min-height: 260px;
        padding: 10px;
    }
    .t-popup-view__info {
        width: 100%;
        min-width: 100%;
        padding: 10px;
    }
    .t-popup-view__top {
        font-size: 34px;
        line-height: 40px;
    }
    .t-popup__overlay{
        padding: 30px 20px 20px;
    }
}

@media screen and (max-width: 480px){
    .t-popup-view__img {
        min-height: 220px;
    }
}
@media screen and (max-width: 400px){
    .t-popup-view__img {
        min-height: 180px;
    }
}