.w-hidden {
    display: none;
}

#fullpage-overlay {
    display: table;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    display: none;
}

#fullpage-overlay .outer-wrapper {
    position: relative;
    height: 100%;
}

#fullpage-overlay .inner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 30%;
    width: 50%;
    margin: -3% 0 0 -25%;
    text-align: center;
}

#fullpage-overlay .msg {
    display: inline-block;
    padding: 20px;
    max-width: 400px;
}

.form-control {
    display: inline;
    width: 90%;
}

.grey_out {
    opacity: 0.4;
}

.no_mobile {
    display: none;
}
.no_tablet {
    display: none;
}
.asic_type_icon {
    font-size: 25px;
}

@media (min-width: 576px) {
    .no_mobile {
        display: none;
    }
    .no_tablet {
        display: none;
    }
    .asic_type_icon {
        font-size: 25px;
    }
}

@media (min-width: 768px) {
    .no_mobile {
        display: block;
    }
    .no_tablet {
        display: none;
    }
    .asic_type_icon {
        font-size: 35px;
    }
}

@media (min-width: 992px) {
    .no_mobile {
        display: block;
    }
    .no_tablet {
        display: block;
    }
    .asic_type_icon {
        font-size: 45px;
    }
}

@media (min-width: 1200px) {
    .no_mobile {
        display: block;
    }
    .no_tablet {
        display: block;
    }
    .asic_type_icon {
        font-size: 55px;
    }
}


