﻿@media only screen and (min-width: 1024px) {

    .deskhide {
        display: none;
    }
}


@media only screen and (max-width: 1023px) {
    .mobhide {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .mobhide {
        display: none;
    }
}

.opaque {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    padding: 20px;
}

.whitebox {
    background-color: #ffffff;
    border: solid 1px #0B212F;
    border-radius: 10px;
    padding: 20px;
    color: #333333;
}

    .whitebox hr {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        border: 0;
        border-top: 1px solid #098BB6;
    }

    .whitebox h3 {
        font-weight: bold;
        padding-top: 10px;
    }

    .whitebox fas {
        color: #333;
    }

.whitebox {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    color: #333;
    font-weight: bold;
}


.btn-blue {
    color: #ffffff;
    background-color: #098BB6;
    padding: 1rem 1.8rem;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 0.5rem;
    border: solid 3px #fff;    
}

    .btn-blue:hover {
        color: #fff;
        background-color: #61D2F8;
        border-color: #61D2F8;
    }

    .btn-blue:focus, .btn-blue.focus {
        color: #fff;
        background-color: #61D2F8;
        border-color: #61D2F8;
        box-shadow: 0 0 0 0.2rem rgba(9, 139, 182, 0.5);
    }

.smaller {
    font-size: 70%;
    font-weight: 400;
}