/*VERIFICATION START*/
@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(.5);
        -webkit-transform: scale(.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
@-webkit-keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(.5);
        -webkit-transform: scale(.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
/* --------------------------  all */
.verification {
    z-index: 10000000000000;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
    font-weight: normal !important;
}
.verification,
.verification *, 
.verification *:before, 
.verification *:after {
  box-sizing: border-box;
}
.verification-holder {
    background: rgba(0,0,0,.95);
    color: #222223;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: auto;
    font-size: 14px;
    transition: all .2 ease-in;
}
/*show all*/
.verification {
    display: none;
}
.verification.is-active {
    display: block;
    animation: fade .2s ;
    -webkit-animation: fade .2s ;
}
/* --------------------------  loader*/
.verification-loading__loader svg {
  width: 64px;
  height: 64px;

}
.verification-loading__loader svg, .verification-loading__loader path {
  fill: #fff;
}
.verification-loading__loader {
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  vertical-align: top;
}
/*show loader*/
.verification-loading {
    display: none;
}
.verification-loading.is-active {
    display: block;
    animation: fadeZoom .4s;
    -webkit-animation: fadeZoom .4s;
}
/* --------------------------  modal*/
.verification-modal {
    display: border-box;
    background: #fff;
    padding: 1rem;
    width: 100%;
    height: 100%;
    transition: all .2 ease-in;
}
@media (min-width: 768px) {
    .verification-modal {
        max-width: 640px;
        border-radius: 1rem;
        margin: 1rem;
        padding: 3rem;
        width: auto;
        height: auto;
    }
}
@media (min-width: 992px) {
    .verification-modal {
        padding: 3.5rem;
    }
}
/*show modal*/
.verification-modal {
    display: none;
}
.verification-modal.is-active {
    display: block;
    animation: fadeZoom .4s;
    -webkit-animation: fadeZoom .4s;
}
/*others*/
.verification-title {
    font-size: 1.2em;
    margin: 0 0 .2em 0;
    text-align: center;
    font-weight: bold;
    color: #1fc126;
}
@media (min-width: 768px) {
    .verification-title {
        font-size: 2em;
    }
}
.verification-subtitle {
    font-size: 1em;
    margin-bottom: 1em;
    text-align: center;
    color: #5a5f62;
}
.verification-form {
    padding: 2em;
    background: #eceff1;
    margin: 1em 0;
    border-radius: 4px;
    text-align: center;
    position: relative;
}
@media (min-width: 992px) {
    .verification-form {
        padding: 2em;

    }
}
.verification-form label {
    margin-bottom: 1em;
    font-weight: normal;
}
.verfication-form-group {
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
.verfication-form-group .form-control {
    line-height: 1 !important;
    max-width: 200px;
    padding: 1em;
    height: auto;
    border: 1px solid #bebfc3;
    border-right: 0;
    box-shadow: none !important;
    border-radius: 4px 0 0 4px;
}
.verification-button {
    padding: 1em 2em;
    font-weight: bold;
    height: auto;
    line-height: auto;
    border: 0;
    background: #1fc126;
    color: #fff;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
    
    border-radius: 0 4px 4px 0;
}
.verfication-invalid {
    color: #f71b1b;
    display: none;
    font-size: .875em;
    margin-top: .4em;
    position: absolute;
    bottom: .5em;
}
.verification-summary {
    margin-top: 1em;
}
.verification-summary__mail {
    margin-bottom: .5em;
}
.verification-summary__text {
    font-size: .875em;
    color: #5a5f62;
}
.verfication-options__menu {
    border-top: 1px solid #e2e8ec;
    margin: 1em 0 0 0;
    padding: 1em 0 0 0;
    display: flex;
    justify-content: space-between;
    font-size: .875em;
}
.verfication-options__menu a {
    color: #0061a2;
    text-decoration: underline;
}
.verfication-options__menu a:hover {
    color: #0061a2;
    text-decoration: none;
}
/* mail*/
.verfication-options__new-mail {
    margin-top: 1em;
}
.verfication-options__new-mail .form-control {
    flex: 1 1 auto;
    max-width: none;
}
/*show mail*/
.verfication-options__new-mail {
    display: none;
}
.verfication-options__new-mail.is-active {
    display: block;
    animation: fade .2s;
    -webkit-animation: fade .2s;
}
.legals {
    z-index: 9;
    position: absolute;
    bottom: 0;
    left: calc(50% - 100px);
}