:root {
    --color-main: #3366cc;
    --color-green: #17996e;
    --color-black: #454545;
}

body, html, input {
    margin: 0; padding: 0;
    width: 100%;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    text-size-adjust: 100%;
    font-size: 18px;
    color: var(--color-black);
    background-color: #f7faff;
    overflow-x: hidden;
}

a{
    color: var(--color-black);
    text-decoration: none;
}

.font_gr {
    color: var(--color-green);
}

/*
    Header
*/

.header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 0 30px 0 rgb(0, 21, 64, 20%);
    z-index: 10;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header .bl_l {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.header .bl_l .img {
    width: 32px;
    height: 32px;
}

.header .bl_l .name {
    margin-left: 15px;
    font-size: 24px;
}

.header .bl_r {
    display: flex;
    align-items: center;
    margin-right: 50px;
}

.header .bl_r .l {
    font-size: 16px;
    font-weight: 400;
}

.header .bl_r .li {
    margin: 0 7px 1px 30px;
    height: 14px;
}

.header .bl_r_e {
    display: flex;
    align-items: center;
    margin-right: 50px;
}

.header .bl_r_e .btn_a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 80px;
    height: 50px;
    font-size: 12px;
    color: #41454d;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.header .bl_r_e .btn_a:hover {
    background-color: #f5f7fa;
}

.header .bl_r_e .btn_a img {
    height: 24px;
}

.header .bl_r_e .btn_b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 50px;
    margin-left: 15px;
    font-size: 18px;
    color: #ffffff;
    border: 0;
    border-radius: 5px;
    background-color: var(--color-main);
    cursor: pointer;
    transition: 0.3s;
}

.header .bl_r_e .btn_b:hover {
    background-color: var(--color-green);
}

.header .bl_r_e .sep {
    width: 1px;
    height: 50px;
    margin: 0 15px;
    background-color: #e6eaf2;
}

/*
    Footer
*/

.footer {
    display: flex;
    justify-content: center;
    width: 100%;
    color: #ffffff;
    background-color: #061a40;
}

.footer .bl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1050px;
    padding: 20px 0;
}

.footer .col1 {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.footer .col1 .logo {
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.footer .col1 .logo .img {
    width: 32px;
    height: 32px;
}

.footer .col1 .logo .name {
    margin-left: 15px;
    font-size: 24px;
    font-weight: 200;
    color: #ffffff;
}

.footer .col1 .t {
    margin-top: 15px;
    font-size: 12px;
    text-align: justify;
    line-height: 1.2;
    opacity: 0.8;
}

.footer .col2 {
    display: flex;
    flex-direction: column;
}

.footer .col3 {
    display: flex;
    flex-direction: column;
}

.footer .col3 .h {
    font-weight: 600;
    opacity: 0.8;
}

.footer .col3 .l {
    margin-top: 5px;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.8;
}

.footer .row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
    opacity: 0.8;
}


.content {
    width: 1050px;
    margin: 50px auto;
}

/*
    Main Content
*/

.main_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1050px;
    margin: 80px auto 100px;
}

.main_content .line1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
}

.main_content .line1 .h {
    width: 100%;
    font-size: 48px;
    font-weight: 600;
    color: var(--color-main);
    text-align: center;
}

.main_content .line1 .h2 {
    width: 100%;
    margin-top: 20px;
    font-size: 24px;
    text-align: center;
}

.main_content .line1 .h3 {
    width: 100%;
    margin: 20px 0 50px;
    font-size: 18px;
    text-align: center;
}

.main_content .line1 .item_a {
    width: calc(33% - 20px);
}

.main_content .line1 .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 30px);
    height: 400px;
    margin-bottom: 30px;
    padding: 15px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 10%);
    transition: 0.3s;
}

.main_content .line1 .item:hover {
    box-shadow: 0px 0px 30px 0px rgb(0, 21, 64, 20%);
}

.main_content .line1 .item .name {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-main);
    text-align: center;
}

.main_content .line1 .item .descr {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
}

.main_content .line1 .item .img {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 20px;
    background-size: cover;
}

.main_content .line1 .item .img .grad {
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.main_content .line1 .item .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    margin-top: 20px;
    background-color: var(--color-main);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    transition: 0.5s;
}

.main_content .line1 .item .btn:hover {
    background-color: var(--color-green);
}

.main_content .line2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 75px;
}

.main_content .line2 .h {
    width: 100%;
    font-size: 36px;
    text-align: center;
}

.main_content .line2 .bl {
    display: flex;
    flex-direction: column;
    width: calc(50% - 60px);
    margin-top: 50px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 10%);
}

.main_content .line2 .bl .h {
    display: flex;
    align-items: center;
    font-size: 24px;
}

.main_content .line2 .bl .ico {
    height: 32px;
    margin-right: 10px;
}

.main_content .line2 .bl .t {
    margin-top: 10px;
    font-size: 14px;
    text-align: justify;
}

.main_content .line3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 75px;
}

.main_content .line3 .h {
    width: 100%;
    font-size: 36px;
    text-align: center;
}

.main_content .line3 .t {
    margin-top: 30px;
    text-align: justify;
}

.main_content .line4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 75px;
}

.main_content .line4 .h {
    width: 100%;
    font-size: 36px;
    text-align: center;
}

.main_content .line4 .bl {
    display: flex;
    flex-direction: column;
    width: calc(33% - 60px);
    margin-top: 50px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 10%);
}

.main_content .line4 .bl .h {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
}

.main_content .line4 .bl .h .ico {
    height: 24px;
    margin-right: 10px;
}

.main_content .line4 .bl .t {
    margin-top: 10px;
    font-size: 14px;
    text-align: justify;
}

.main_content .line4 .marl {
    margin-left: 50px;
}

.main_content .line4 .marr {
    margin-right: 50px;
}

.main_content .line5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 75px;
}

.main_content .line5 .h {
    width: 100%;
    font-size: 36px;
    text-align: center;
}

.main_content .line5 .bl {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 42px);;
    margin-top: 25px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 10%);
}

.main_content .line5 .bl .stars {
    width: 50%;
}

.main_content .line5 .bl .stars img {
    height: 16px;
}

.main_content .line5 .bl .name {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 50%;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.main_content .line5 .bl .name img {
    height: 12px;
    margin-right: 6px;
}

.main_content .line5 .bl .name .v {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
    color: #777777;
}

.main_content .line5 .bl .t {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    text-align: justify;
}

/*
    Landing Content
*/

.landing_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 100px;
}

.landing_content .line1 {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #ffffff;
}

.landing_content .line1 .img {
    position: absolute;
    width: 1050px;
    height: calc(100% - 25px);
    top: 0;
    left: calc(50% - 525px);
    background-size: cover;
    opacity: 0.1;
}

.landing_content .line1 .img .grad {
    position: absolute;
    width: 100%;
    height: 150px;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.landing_content .line1 .bl {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 700px;
    height: 100%;
    top: 0;
    left: calc(50% - 350px);
}

.landing_content .line1 .bl .h {
    font-size: 48px;
    font-weight: 600;
    color: #454545;
    text-align: center;
}

.landing_content .line1 .bl .h .bg {
    padding: 2px 16px 0;
    color: var(--color-main);
    border-radius: 36px;
    border: 5px solid var(--color-main);
}

.landing_content .line1 .bl .h2 {
    margin-top: 25px;
    font-size: 36px;
    font-weight: 600;
    color: #454545;
    text-align: center;
}

.landing_content .line1 .bl .s {
    display: flex;
    align-items: center;
    margin-top: 75px;
    font-size: 14px;
}

.landing_content .line1 .bl .s img {
    height: 14px;
    margin-right: 7px;
}

.landing_content .line1 .bl .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 60px;
    margin-top: 15px;
    background-color: var(--color-main);
    border-radius: 10px;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: btn_glow;
    transition: 0.5s;
}

.landing_content .line1 .bl .btn img {
    width: 24px;
    height: 18px;
    margin-left: 24px;
}

.landing_content .line1 .bl .btn:hover {
    background-color: var(--color-green);
    animation-name: btn_glow_h;
}

.landing_content .line1 .bl .t {
    position: absolute;
    bottom: 10px;
    font-size: 14px;
    color: #888888;
}

@keyframes btn_glow {
    from {
        -webkit-box-shadow: 0px 0px 0px 0px rgba(51, 102, 204, 0.5);
        -moz-box-shadow: 0px 0px 0px 0px rgba(51, 102, 204, 0.5);
        box-shadow: 0px 0px 0px 0px rgba(51, 102, 204, 0.5);
    }

    to {
        -webkit-box-shadow: 0px 0px 0px 15px rgba(51, 102, 204, 0);
        -moz-box-shadow: 0px 0px 0px 15px rgba(51, 102, 204, 0);
        box-shadow: 0px 0px 0px 15px rgba(51, 102, 204, 0);
    }
}

@keyframes btn_glow_h {
    from {
        -webkit-box-shadow: 0px 0px 0px 0px rgba(23, 153, 110, 0.5);
        -moz-box-shadow: 0px 0px 0px 0px rgba(23, 153, 110, 0.5);
        box-shadow: 0px 0px 0px 0px rgba(23, 153, 110, 0.5);
    }

    to {
        -webkit-box-shadow: 0px 0px 0px 15px rgba(23, 153, 110, 0);
        -moz-box-shadow: 0px 0px 0px 15px rgba(23, 153, 110, 0);
        box-shadow: 0px 0px 0px 15px rgba(23, 153, 110, 0);
    }
}

.landing_content .line2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1050px;
    margin-top: 75px;
}

.landing_content .line2 .h {
    width: 100%;
    margin-bottom: 30px;
    font-size: 36px;
    color: var(--color-main);
    text-align: center;
}

.landing_content .line2 .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(33% - 75px);
    padding: 15px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 10%);
}

.landing_content .line2 .col .ico {
    height: 32px;
    margin-bottom: 10px;
}

.landing_content .line2 .col b {
    margin-bottom: 10px;
}

.landing_content .line2 .arr {
    display: flex;
    align-items: center;
    opacity: 0.15;
}

.landing_content .line2 .arr img {
    height: 32px;
}

.landing_content .line3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1050px;
    margin-top: 75px;
}

.landing_content .line3 .h {
    width: 100%;
    font-size: 36px;
    color: var(--color-main);
    text-align: center;
}

.landing_content .line3 .h2 {
    width: 100%;
    margin-top: 20px;
    font-size: 24px;
    text-align: center;
}

.landing_content .line3 .t {
    margin-top: 20px;
    text-align: justify;
}

.landing_content .linebtn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 75px;
}

.landing_content .linebtn .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 60px;
    background-color: var(--color-main);
    border-radius: 10px;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: btn_glow;
    transition: 0.5s;
}

.landing_content .linebtn .btn img {
    width: 24px;
    height: 18px;
    margin-left: 24px;
}

.landing_content .linebtn .btn:hover {
    background-color: var(--color-green);
    animation-name: btn_glow_h;
}

/*
    Form Content
*/

.form_content {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 80px;
}

.form_content .form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 50px 0;
}

.form_content .page {
    position: relative;
    width: 900px;
    aspect-ratio: 1700/2200;
    margin-bottom: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow: 0 0 20px 0 rgb(0, 21, 64, 10%);
    transition: 0.2s;
}

.form_content .page input {
    position: absolute;
    background-color: #ccd7ff;
    border: 0;
    font-size: 14px;
    font-weight: 600;
}

.form_content .page input[type="checkbox"] {
    appearance: none;
    background-color: #ccd7ff;
    border: 0;
}

.form_content .page input[type="checkbox"]:checked {
    background-image: url('/img/forms/check.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #ccd7ff;
}

.form_content .page textarea {
    position: absolute;
    background-color: #ccd7ff;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    color: #454545;
}

.form_content .page .sign {
    font-family: "Oooh Baby", cursive;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
}

.form_content .bl_zoom {
    position: fixed;
    display: flex;
    left: 50%;
    top: 105px;
    margin-left: -88px;
    padding: 10px;
    border-radius: 64px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px 0 rgb(0, 21, 64, 20%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 5;
}

.form_content .bl_zoom .btn_minus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 24px;
    color: #ffffff;
    background-color: #41454d;
    border-radius: 16px;
    cursor: pointer;
}

.form_content .bl_zoom .zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 32px;
    margin: 0 8px;
    font-size: 18px;
    background-color: #ffffff;
    border-radius: 16px;
}

.form_content .bl_zoom .btn_plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 24px;
    color: #ffffff;
    background-color: #41454d;
    border-radius: 16px;
    cursor: pointer;
}

.form_content .w_reg_bg {
    position: fixed;
    width: 100%; height: 100%;
    top: 0; left: 0;
    background-color: #000000;
    opacity: 0.5;
    z-index: 15;
}

.form_content .w_reg {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 450px;
    margin-top: 50px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 10%);
    z-index: 20;
}

.form_content .w_reg .h {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--color-main);
}

.form_content .w_reg .ff {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
}

.form_content .w_reg .ff .f {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.form_content .w_reg .ff .f input {
    cursor: pointer;
}

.form_content .w_reg .ff .f span {
    margin: 5px 0 3px;
}

.form_content .w_reg .h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.form_content .w_reg .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin-top: 10px;
    font-size: 24px;
    color: #ffffff;
    border: 0px;
    border-radius: 5px;
    background-color: var(--color-main);
    cursor: pointer;
    transition: 0.3s;
}

.form_content .w_reg .btn:hover {
    background-color: var(--color-green);
}

.form_content .w_reg .btn img {
    width: 40px;
    height: 40px;
}

.form_content .w_reg .btn_na {
    opacity: 0.3;
    cursor: default;
    background-color: var(--color-green);
}

.form_content .w_reg .btn_na:hover {
    background-color: var(--color-green);
}

.form_content .w_reg .t {
    font-size: 13px;
    margin-top: 15px;
}

.form_content .w_reg .l {
    color: var(--color-main);
    text-decoration: underline;
}

/*
Purchase
*/

.purchase {
    width: 1050px;
    margin: 130px auto 50px;
}

.purchase .l1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.purchase .l1 .col1 {
    width: 650px;
}

.purchase .l1 .col1 .h {
    width: 100%;
    font-size: 48px;
    font-weight: 600;
    color: var(--color-main);
    text-align: center;
}

.purchase .l1 .col1 .h2 {
    width: 100%;
    margin-top: 20px;
    font-size: 24px;
    text-align: center;
}

.purchase .l1 .col2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    width: 350px;
}

.purchase .l1 .col2 .bl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(33% - 30px);
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 10%);
}

.purchase .l1 .col2 .bl img {
    margin-right: 10px;
}

.purchase .l2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
}

.purchase .l2 .col1 {
    display: flex;
    flex-direction: column;
    width: 600px;
    height: fit-content;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 10%);
}

.purchase .l2 .col1 .l {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.purchase .l2 .col1 .l .b_l {
    font-weight: 600;
}

.purchase .l2 .col1 .l .b_l img {
    margin: 7px 7px 0 0;
}

.purchase .l2 .col1 .l .b_r {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-weight: 600;
}

.purchase .l2 .col1 .l .b_r .price {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-main);
}

.purchase .l2 .col1 .si {
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding: 10px;
    border: 1px solid #b2d2ff;
    border-radius: 5px;
    background-color: #e5f0ff;
}

.purchase .l2 .col1 .si img {
    height: 32px;
    margin-right: 10px;
}

.purchase .l2 .col1 .si .t {
    font-size: 14px;
    font-weight: 400;
    color: #052d66;
    text-align: justify;
}

.purchase .l2 .col1 .form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.purchase .l2 .col1 .form .cname_l {
    margin-bottom: 3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 600;
    font-size: 17px;
}

.purchase .l2 .col1 .form .cname {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 13px;
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-transform: uppercase;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #cccccc;
    border-radius: 0.25rem;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}

.purchase .l2 .col1 .form .cname::placeholder {
    color: #cccccc;
    text-transform: none;
}

.purchase .l2 .col1 .form .cname:focus {
    outline: 0;
    border: 1px solid #0570de;
    box-shadow: 0 0 0 0.15rem rgba(0, 132, 255, 0.25);
}

.purchase .l2 .col1 .form .bl_b {
    width: 100%;
}

.purchase .l2 .col1 .form .bl_s {
    width: 47%;
    margin: 15px 0;
}

.purchase .l2 .col1 .form .bl_err {
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: #E25950;
    transition: 0.2s;
}

.purchase .l2 .col1 .form .bl_cb {
    width: 35px;
    margin-top: 15px;
}

.purchase .l2 .col1 .form .bl_cb input {
    width: 20px;
    height: 20px;
    border: 2px solid #555555;
    cursor: pointer;
}

.purchase .l2 .col1 .form .bl_refsec {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
    font-size: 14px;
    color: #666666;
}

.purchase .l2 .col1 .form .bl_refsec .bl {
    display: flex;
    align-items: center;
}

.purchase .l2 .col1 .form .bl_refsec .bl img {
    height: 14px;
    margin-right: 6px;
    margin-bottom: 1px;
}

.purchase .l2 .col1 .form .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin-top: 30px;
    font-size: 24px;
    color: #ffffff;
    border: 0px;
    border-radius: 5px;
    background-color: var(--color-main);
    cursor: pointer;
    transition: 0.3s;
}

.purchase .l2 .col1 .form .btn:hover {
    background-color: var(--color-green);
}

.purchase .l2 .col1 .form .btn img {
    width: 40px;
    height: 40px;
}

.purchase .l2 .col1 .form .btn_na {
    opacity: 0.3;
    cursor: default;
}

.purchase .l2 .col1 .form .btn_na:hover {
    background-color: var(--color-main);
}

.purchase .l2 .col1 .form .btn_na2 {
    opacity: 0.3;
    cursor: default;
    background-color: var(--color-green);
}

.purchase .l2 .col1 .form .btn_na2:hover {
    background-color: var(--color-green);
}

.purchase .l2 .col1 .bl_av {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin-top: 50px;
}

.purchase .l2 .col1 .bl_t {
    width: 100%;
    margin-top: 50px;
    font-size: 12px;
    text-align: justify;
    color: #777;
}

.purchase .l2 .col1 .bl_t a {
    color: #777;
    text-decoration: underline;
}

.purchase .l2 .col2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    height: fit-content;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 10%);
}

.purchase .l2 .col2 .h {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-main);
}

.purchase .l2 .col2 .cert {
    width: 70%;
    margin: 15px 0 5px;
    outline: 3px solid #ffffff;
    outline-offset: -3px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 20%);
}

.purchase .l2 .col2 .report {
    width: 70%;
    margin: 15px 0 5px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 20%);
}

.purchase .l2 .col2 .calendar {
    width: 35%;
    margin: 15px 0 5px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 20%);
}

.purchase .l2 .col2 .bl {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
}

.purchase .l2 .col2 .bl .ico {
    height: 16px;
    margin-right: 10px;
}

.purchase .l3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
}

.purchase .l3 .h {
    width: 100%;
    font-size: 36px;
    font-weight: 600;
    color: var(--color-main);
    text-align: center;
}

.purchase .l3 .bl {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 42px);;
    margin-top: 25px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 10%);
}

.purchase .l3 .bl .stars {
    width: 50%;
}

.purchase .l3 .bl .stars img {
    height: 16px;
}

.purchase .l3 .bl .name {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 50%;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.purchase .l3 .bl .name img {
    height: 12px;
    margin-right: 6px;
}

.purchase .l3 .bl .name .v {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
    color: #777777;
}

.purchase .l3 .bl .t {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    text-align: justify;
}

.purchase .l4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 75px;
}

.purchase .l4 .h {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.purchase .l4 .h .l {
    width: 100px;
    height: 1px;
    background-color: #5b6076;
    width: -webkit-fill-available;
    margin-top: 2px;
    opacity: 0.5;
}

.purchase .l4 .h .t {
    padding: 0 10px;
    font-size: 24px;
    color: #5b6076;
    white-space: nowrap;
}

.purchase .l4 .bl {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 100px;
}

.purchase .l4 .bl img {
    height: 32px;
    opacity: 0.7;
}

/*
    Stripe Input Fields
*/

.CardNumberField-input-wrapper {
    position: absolute;
    top: 5px !important;
}

.stripe_base {
    display: block;
    height: 30px;
    padding: 11px 10px 2px;
    background-color: #fff;
    border: 1px solid #bbbbbb;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 1px 1px 0px, rgba(0, 0, 0, 0.02) 0px 3px 6px 0px, rgba(5, 115, 225, 0.008) 0px 0px 0px 0.0790087px, rgba(0, 0, 0, 0.004) 0px 0.0263362px 0.0263362px 0px;
    border-radius: 5px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.stripe_focus {
    background-color: #fff;
    border-color: #0570de;
    outline: 0;
    box-shadow: 0 0 0 0.15rem rgba(192, 220, 247, 1);
}

.stripe_invalid {
    border: 1px solid #E25950;
}

/*
    Thank you
*/

.thankyou {
    width: 1050px;
    margin: 130px auto 50px;
}

.thankyou .l1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.thankyou .l1 .h {
    width: 100%;
    font-size: 48px;
    font-weight: 600;
    color: var(--color-main);
    text-align: center;
}

.thankyou .l1 .h2 {
    width: 100%;
    margin-top: 20px;
    font-size: 24px;
    text-align: center;
}

.thankyou .l1 .h3 {
    width: 100%;
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
}

.thankyou .l1 .t {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.thankyou .l1 .t a {
    color: var(--color-main);
}

/*
    Terms
*/

.terms {
    width: 1050px;
    margin: 130px auto 50px;
}

.terms .h {
    width: 100%;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.terms .h2 {
    width: 100%;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.terms .h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.terms p {
    margin: 0 0 15px 0;
    font-size: 14px;
    text-align: justify;
}

.terms b {
    font-weight: 600;
}

.terms ul {
    margin: 0 0 15px 0;
    padding-left: 15px;
    font-size: 14px;
}

.terms li {
    text-align: justify;
}

.terms .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 60px;
    margin: 50px auto;
    background-color: var(--color-main);
    border-radius: 10px;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: btn_glow;
    transition: 0.5s;
}

.terms .btn img {
    width: 24px;
    height: 18px;
    margin-left: 24px;
}

.terms .btn:hover {
    background-color: var(--color-green);
    animation-name: btn_glow_h;
}

.terms .line2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 25px;
}

.terms .line2 .bl {
    display: flex;
    flex-direction: column;
    width: calc(50% - 55px);
    margin-bottom: 50px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 21, 64, 10%);
}

.terms .line2 .bl .h {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
}

.terms .line2 .bl .ico {
    height: 24px;
    margin-right: 10px;
}

.terms .line2 .bl .t {
    margin-top: 10px;
    font-size: 14px;
    text-align: justify;
}

/*
    Input fields
*/

.form_inp_text {
    width: calc(100% - 22px);
    height: 43px;
    margin: 2px 0 10px;
    padding: 0 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    background-color: #ffffff;
}

.form_inp_text::placeholder {
    color: #cccccc;
}

.form_inp_text:focus {
    outline: none;
    border: 1px solid #cccccc;
    box-shadow: 0 0 0 4px #f8f8f8;
}

.form_inp_text_label {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
}

/*
    Alert Windows
*/

.alertwrap {
    display: none;
    position: fixed;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    top:0px;
    left:0px;
    width:100vw;
    height:100vh;
    z-index: 1000;
}

.alertwin {
    display: none;
    flex-wrap: wrap;
    width: 500px;
    margin: 10px;
    background-color: #fff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 20%);
    z-index: 1001;
}

.alertwin .alertcont {
    display: flex;
    width: 100%;
}

.alertwin .alertcont .alerticon {
    flex: 0 0 60px;
    background-position: 20px 20px;
    background-size: 40px 40px;
    background-repeat: no-repeat;
}

.alertwin .alertcont .alerticon_info {
    background-image: url('/img/components/modal/ico_info.png');
}

.alertwin .alertcont .alerticon_question {
    background-image: url('/img/components/modal/ico_question.png');
}

.alertwin .alertcont .alerticon_warning {
    background-image: url('/img/components/modal/ico_warning.png');
}

.alertwin .alertcont .alerticon_error {
    background-image: url('/img/components/modal/ico_error.png');
}

.alertwin .alertcont .alerticon_confirm {
    background-image: url('/img/components/modal/ico_confirm.png');
}

.alertwin .alertcont .inactive {
    background-image: url('/img/components/modal/90-ring-with-bg.svg');
}

.alertwin .alertcont .alerttext {
    width: inherit;
    padding: 17px 20px 16px 20px;
}

.alertwin .alertcont .alerttext .alerthead{
    text-align: justify;
    font-weight: 600;
}

.alertwin .alertcont .alerttext .alertmessage{
    text-align: justify;
    color: #666;
    margin-top: 10px;
}

.alertwin .alertcont .alerttext .alertmessage a{
    color: var(--color-main);
    text-decoration: underline;
}

.alertwin .alertcont .alertclose {
    flex: 0 0 15px;
    height: 15px;
    padding: 20px 20px 0 0;
}

.alertwin .alertcont .alertclose img{
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.alertwin .alertbuttons {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    width: 100%;
    padding: 12px 20px;
    border-radius: 0 0 7px 7px;
    background-color: #fafafa;
    opacity: 1;
    transition: 0.3s;
}

.alertwin .alertbuttons .alertbtntpl{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 34px;
    margin-left: 12px;
    padding: 0 24px;
    width: fit-content;
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.alertwin .alertbuttons .alertbtntpl:hover {
    opacity: 0.85;
}

.alertwin .alertbuttons .btninactive{
    opacity: 0.3;
    cursor: default;
}

.alertwin .alertbuttons .btninactive:hover{
    opacity: 0.3;
    cursor: default;
}

.alertwin .alertbuttons .col_blue{
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    color: #fff;
}

.alertwin .alertbuttons .col_red{
    background-color: #e50000;
    border: 1px solid #e50000;
    color: #fff;
}

.alertwin .alertbuttons .col_green{
    background-color: var(--color-green);
    border: 1px solid var(--color-green);
    color: #fff;
}

.alertwin .alertbuttons .col_yellow{
    background-color: #f2ca00;
    border: 1px solid #f2ca00;
    color: #333;
}

.alertwin .alertbuttons .col_white{
    background-color: #fff;
    border: 1px solid #bbb;
    color: #333;
}

.alertwin .alertbuttons .col_white:hover{
    background-color: #f8f8f8;
}

/* Cookies */

.cookies {
    display: none;
    position: fixed;
    width: 760px; height: 85px;
    bottom: 20px;
    left: 50%; margin-left: -380px;
    font-size: 14px;
    background-color: var(--color-main);
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0,0,0,20%);
    z-index: 20;
}

.cookies .ico{
    position: absolute;
    top: 23px; left: 20px;
    cursor: pointer;
}

.cookies .ico img{
    width: 45px; height: 37px;
}

.cookies .text {
    position: absolute;
    width: 390px;
    top: 15px; left: 85px;
    color: #fff;
    text-align: justify;
}

.cookies .text a {
    color: #fff;
    text-decoration: underline;
}

.cookies .btn1 {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 495px; top: 25px;
    width: 100px; height: 35px;
    background-color: #fff;
    border-radius: 3px;
    font-weight: 400;
    text-align: center;
    color: var(--color-main);
    cursor: pointer;
}

.cookies .btn2 {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 605px; top: 25px;
    width: 98px; height: 33px;
    border: 1px solid #fff;
    border-radius: 3px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.cookies .close{
    position: absolute;
    top: 20px; right: 20px;
    width: 15px; height: 15px;
    cursor: pointer;
}

.cookies .close img{
    width: 15px; height: 15px;
}
