: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: #f8f8f8;
    overflow-x: hidden;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

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

/*
    Header
*/

.header {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.header .bl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1050px;
    height: 100%;
}

.header .bl_l {
    display: flex;
    align-items: center;
}

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

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

.header .bl_r {
    display: flex;
}

.header .bl_r .l {
    margin-left: 30px ;
    font-size: 16px;
}

/*
    Footer
*/

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

.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.5;
}

.footer .col1 .logo .img {
    width: 34px;
    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.3;
}

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

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

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

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

.footer .row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.5;
}


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

/*
    Main
*/

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

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

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

.main .l1 .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 500px;
    margin-top: 50px;
}

.main .l1 .col .ico {
    height: 13px;
}

.main .l1 .col .t1 {
    margin-bottom: 10px;
}

.main .l1 .col .t2 {
    margin-top: 10px;
}

.main .l1 .col .cert {
    width: 500px;
    height: 350px;
}

.main .l1 .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin: 30px 0;
    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;
}

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

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

@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);
    }
}

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

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

.main .l2 .col .ico {
    height: 32px;
    margin-bottom: 10px;
}

.main .l2 .arr {
    display: flex;
    align-items: center;
    opacity: 0.15;
}

.main .l2 .arr img {
    height: 32px;
}

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

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

.main .l3 .t {
    margin-top: 20px;
    text-align: justify;
}

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

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

.main .l4 .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, 0, 0, 10%);
}

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

.main .l4 .bl .h .ico {
    height: 32px;
    margin-right: 10px;
}

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

.main .l4 .marl {
    margin-left: 50px;
}

.main .l4 .marr {
    margin-right: 50px;
}

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

.main .lbtn .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;
}

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

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

/*
    Test
*/

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

.test .l1 .cnt {
    display: flex;
}

.test .l1 .cnt b {
    font-weight: 600;
}

.test .l1 .time {
    display: flex;
    font-weight: 600;
}

.test .l1 .line_bg {
    width: 100%;
    height: 10px;
    margin-top: 5px;
    background-color: #ffffff;
    border-radius: 5px;
}

.test .l1 .line_pr {
    width: 0;
    height: 10px;
    background-color: var(--color-main);
    border-radius: 5px;
    transition: 0.5s;
}

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

.test .l2 .bl1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 25px);
    height: 100%;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 0, 0, 10%);
}

.test .l2 .bl1 img {
    height: 100%;
}

.test .l2 .bl2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(50% - 25px);
}

.test .l2 .bl2 .q {
    width: 100%;
    height: 120px;
    text-align: justify;
}

.test .l2 .bl2 .a {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: calc(33% - 34px);
    height: 96px;
    padding: 10px;
    margin-top: 20px;
    font-weight: 600;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 0, 0, 10%);
    transition: 0.5s;
    cursor: pointer;
}

.test .l2 .bl2 .a:hover {
    border: 2px solid var(--color-main);
    box-shadow: 0px 0px 20px 0px rgb(0, 0, 0, 30%);
}

.test .l2 .bl2 .a img {
    height: 64px;
}

.test .loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
    margin: 50px auto 0;
}

.test .loader img {
    width: 100px;
    height: 100px;
}

.test .w1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 450px;
    margin: 0 auto;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 0, 0, 10%);
}

.test .w1 .h {
    font-size: 36px;
    font-weight: 600;
}

.test .w1 .h .gr {
    color: var(--color-green);
}

.test .w1 .t1 {
    margin-top: 25px;
    font-size: 16px;
    text-align: justify;
}

.test .w1 .bl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.test .w1 .t2 {
    font-size: 12px;
    font-weight: 600;
}

.test .w1 .form {
    margin: 25px 0;
}

.test .w1 .form .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;
}

.test .w1 .form .btn:hover {
    background-color: var(--color-green);
}

.test .w1 .form .btn img {
    width: 40px;
    height: 40px;
}

.test .w1 .form .btn_na {
    opacity: 0.3;
    cursor: default;
    background-color: var(--color-green);
}

.test .w1 .form .btn_na:hover {
    background-color: var(--color-green);
}

/*
Purchase
*/

.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;
    justify-content: space-between;
    align-items: flex-end;
    width: 350px;
}

.purchase .l1 .col2 .iq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: calc(18% - 20px);
    padding: 10px;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 0, 0, 10%);
}

.purchase .l1 .col2 .iq1 {
    height: calc(72% - 20px);
}

.purchase .l1 .col2 .iq2 {
    height: calc(79% - 20px);
}

.purchase .l1 .col2 .iq3 {
    height: calc(86% - 20px);
}

.purchase .l1 .col2 .iq4 {
    height: calc(93% - 20px);
}

.purchase .l1 .col2 .iq5 {
    height: calc(100% - 20px);
}

.purchase .l1 .col2 .iq .score {
    padding: 0px 5px;
    background-color: var(--color-main);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.purchase .l1 .col2 .iq .score_y {
    padding: 0px 5px;
    background-color: var(--color-green);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.purchase .l1 .col2 .iq .name {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.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;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0px 0px 20px 0px rgb(0, 0, 0, 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 10px 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 .form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.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_t {
    width: calc(100% - 35px);
    font-size: 10px;
    text-align: justify;
    color: #777;
    margin: 15px 0px;
    cursor: pointer;
    user-select: none;
}

.purchase .l2 .col1 .form .bl_t2 {
    width: 100%;
    font-size: 10px;
    text-align: justify;
    color: #777;
}

.purchase .l2 .col1 .form .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;
}

.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 .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, 0, 0, 10%);
}

.purchase .l2 .col2 .cert {
    width: 100%;
}

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

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

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

/*
    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 #cccccc;
    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: #bdbdbd;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(158, 158, 158, 0.25);
}

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

/*
    Thank you
*/

.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: 100%;
}

.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: 30px 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;
}

/*
    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 {
    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;
}
