.stec-reminder-popup-background {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    z-index: 9999;
    left:0;
    top:0;
    font-family: Arial;

    * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    color:#a6a6a6;
}

.stec-reminder-popup-header {
    height: 140px;
    width: 100%;
    float: left;
    background-color:#133535;
    text-align: center;

    i {
        color:#fff;
        font-size: 28px;
        border:3px solid #fff;
        border-radius: 100%;
        padding: 15px;
        margin-top: 40px;
        background-color: inherit;
    }

    background-size: cover;
    background-position: 50%;

}

.stec-reminder-popup{
    position: fixed;
    left: ~'calc(50% - 175px)';
    top:  ~'calc(50% - 200px)';
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: @borders-radius;
    width: 350px;
    overflow: hidden;

    > button {
        width: 50%;
        float: left;
        height: 60px;
        border: none;
        color:#a6a6a6;
        border-top: 1px solid #ebebeb;
        cursor: pointer;
        font-size: 15px;
    }

    .stec-reminder-popup-button-cancel {
        background: #fbfbfb;
        border-right: 1px solid #ebebeb;

        &:hover {
            background: #ee3322;
            color:#fff;
        }
    }

    .stec-reminder-popup-button-proceed {
        background: #fbfbfb;


        &:hover {
            background: #89ba16;
            color:#fff;
        }
    }

    .stec-reminder-popup-button-close {
        background: #fbfbfb;
        width: 100%;
        border-right: none;
        border-left: none;
        display: none;

        &:hover {
            background: #89ba16;
            color:#fff;
        }
    }


    input, select {
        height: 38px;
        border: 1px solid #ebebeb;
        background: #fbfbfb;
        border-radius: 3px;
    }
} 

.stec-reminder-popup-wrapper {
    float: left;
    width: 100%;
}

.stec-reminder-popup-wrapper-status {
    display: none;
    width: 100%;
    text-align: center;
    margin: 25px auto;
    float: left;

    > span:first-of-type {
        width: 100%;
        float: left;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        color:#27282c;
    }
}

.stec-reminder-popup-wrapper-captcha {
    display: none;
    width: 100%;
    text-align: center;
    margin: 25px auto;

    .stec-reminder-popup-wrapper-captcha-placeholder {
        display: inline-block;
        width:auto;
        margin-top: 25px;
    }

    > span:first-of-type {
        width: 100%;
        float: left;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        color:#27282c;
    }

    > span:last-of-type {
        width: 100%;
        float: left;
        text-align: center;
        font-size: 15px;
        font-weight: normal;
        color:#a6a6a6;
        margin-top: 20px;
    }
}

.stec-reminder-popup-wrapper-settings {

    padding: 30px;
    
    input {
        padding:0;
    }

    > span {
        width: 100%;
        float: left;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        color:#27282c;
    }

    input[type="email"] {
        margin-top: 20px;
        width: 100%;
        padding: 0 10px;
    }

    .stec-reminder-flex {
        .flexbox;

        margin-top: 10px;
        input, select, span {
            font-size: 15px;
            color:#a6a6a6;
            &:not(:first-child) {
                margin-left: 10px;
            }
        }

        input {
            width: 48px;
            text-align: center;
        }

        select {
            width: 50%;
            text-indent: 13px;
        }

        span {
            width: 50%;
        }
    }
}

.stec-reminder-popup-checkbox {
    width: 100%;
    float: left;
    margin: 20px 0;
    
    cursor: pointer;
    
    input {
        height: auto;
        margin: 0;
        line-height: 1;
    }
    
    span {
        font-size: 12px;
        padding-left: 5px;
    }
}


@media only screen and (max-width: 768px) {
    .stec-reminder-popup {
        width: 100%;
        height: 100%;
        top:0;
        left:0;
    }

    .stec-reminder-popup {
        z-index: 99999;
        overflow-y: auto;

        button {
            border-bottom: 1px solid #ebebeb;
        }
    }
}