/**
* 2020 Anvanto
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses. 
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
*  @author Anvanto <anvantoco@gmail.com>
*  @copyright  2020 Anvanto
*  @license    Valid for 1 website (or project) for each purchase of license
*  International Registered Trademark & Property of Anvanto
*/

.an_verification_modal-wrap{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
}
.an_verification-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
    background: black;
    display: none;
}
.an_verification-open {
    overflow: hidden;
}
html:not(.an_verification-open) .an_verification_modal-wrap {
    display: none;
}
.an_verification-open .an_verification-menu-right {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.an_verification-buttons{
    display: inline-block;
    width: 200px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    padding: 13px 0px;
    border-radius: 5px;
    margin: 0 3px;
}
.an_verification-buttons:hover,
.an_verification-buttons:focus{
    color: #fff;
}
#an_verification_modal{
    display: none;
    width: 70%;
    max-width: 700px;
    padding: 44px 55px;
    text-align: center;
}
.an_verification_modal-image{
    width: 189px;
    height: 189px;
    margin: 0 auto 23px;
}
#an_verification_image{
    max-width: 100%;
	max-height: 100%;
}
.an_verification-content {
    text-align: center;
}
.an_verification-content h1{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}
.an_modal_text ul {
    display: flex;
    flex-direction: column;
    list-style: disc;
    align-items: center;
}
.an_modal_text ol {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.an_modal_text li {
    padding: 0 8px;
}
.an_modal_text p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 25px;
}
p.an_modal_text{
    font-size: 15px;
    color: #000;
    max-width: 441px;
    line-height: 1.5;
    margin: 0 auto 42px;
}

.an_verification-select-wrap {
    position: relative;
    display: inline-block;
    margin: 0 4px;
}
.an_verification-select {
    background: #f2f0f0;
    border: 1px solid #dadadd;
    border-radius: 7px;
    height: 46px;
    padding: 0 30px 0 18px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    margin: 0;
}
.an_verification-select-wrap:after {
    position: absolute;
    content: "";
    top: calc(50% - 2px);
    right: 10px;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-color: #000 transparent transparent transparent;
}
.an_verification-content-date {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 1024px){
    .an_verification-buttons {
        margin: 5px;
    }
}
@media (max-width: 768px){
    .an_verification-buttons {
        width: 157px;
    }
    #an_verification_modal {
        padding: 23px;
    }
    p.an_modal_text {
        margin: 0 auto 19px;
    }
    .an_verification_modal-image-hide-mobile {
        display: none;
    }
}
@media (max-width: 640px){
    #an_verification_modal {
        width: 100%;
    }
    .an_verification_modal-image {
        width: 150px;
        height: 150px;
    }
    .an_verification-content h1 {
        font-size: 26px;
    }
}
@media (max-width: 480px){
    .an_verification-content-date {
        flex-direction: column;
    }
    .an_verification-select-wrap {
        margin: 0 0 10px;
    }
    .an_verification-select {
        width: 100%;
    }
}
