#verifyEmailPopup {
    /* To center horizontally and vertically on the screen. */
    position: absolute;
    top: 50% !important;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    right: unset;
    bottom: unset;

    height: fit-content;
    width: 400px;
    overflow-y: unset;
}

#verifyEmailPopup div.modal-body {
    padding: 0;
}

#verifyEmailPopup .materialize-component .row .col {
    padding: 0;
}

#verifyEmailPopup .alert-danger {
    color: #63666a;
    background-color: #f5f5f5;
    border-color: #f5f5f5;
}

#verifyEmailPopup .progress {
    position: relative;
    height: 4px;
    display: block;
    width: 100%;
    background-color: #acece6;
    border-radius: 2px;
    margin: 0.5rem 0 1rem 0;
    overflow: hidden;
}

#verifyEmailPopup .progress .indeterminate {
    background-color: #26a69a;
}

#verifyEmailPopup .progress .indeterminate:before {
    content: '';
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

#verifyEmailPopup .progress .indeterminate:after {
    content: '';
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    -webkit-animation-delay: 1.15s;
    animation-delay: 1.15s;
}

#verifyEmailPopup .icon-close:before {
    font-family: 'Material Icons', serif;
}