html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

.column-title {
    text-decoration: underline;
}

body {
    margin-bottom: 60px;
    margin-top: 25px;
    background-color: #004f88;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    text-align: center;
    font-family: 'Trebuchet MS';
}

h1 a {
    text-decoration: none;
    color: white;
}

#frm-manufacturer label {
    width: 200px;
}

#home-outer {
    margin-top: 20px;
    max-width: 700px;
}

#safari-add-to-home {
    margin-bottom: 10px;
}

.centered {
    margin-left: auto;
    margin-right: auto;
}

.small {
    font-size: small;
}

h2 {
    text-align: center;
}

#insco-other, #insco-other-br {
    display: none;
}

.admin-outer, .admin-form {
    margin-left: auto;
    margin-right: auto;
    max-width: 950px;
    border: 1px solid black;
    color: black;
    background-color: white;
    padding: 12px;
    font-size: 12px;
}

#search-subtitle {
    font-size: 26px;
    width: 450px;
    text-align: center;
    margin-top: 30px;
}

#manufacturer-name {
    color: black;
    font-size: 16px;
}

.button, .button-inline {
    margin-left: auto ;
    margin-right: auto;
    background-color: white;
    color: black;
    border-radius: 4px 3px;
}

#install-btns-inline {
    text-align: center;
}

.button-inline {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
}

#goto-register-btn, #goto-validate-user-btn, #goto-contact-btn, #goto-share-btn, #goto-howto-install-btn,
        #goto-forgot-btn, #goto-home-btn, #iphone-install-btn, #ipad-install-btn, #android-install-btn,
        #windows-install-btn, #goto-disclaimer-btn {
    width: 290px;
    height: 35px;
    padding: 5px;
    font-size: 18px;
}

#install-btns-inline div {
    width: 200px;
    margin-left: 5px;
    margin-right: 5px;
}

#goto-howto-install-btn {
    height: 65px;
}

#goto-share-btn {
    height: 110px;
    text-align: center;
}

    #goto-share-btn:hover {
        background: white;
        cursor: default;
    }

.share-btn {
    color: #004f88; /* dark blue - same as main background */
    border: 1px solid #004f88;
    border-radius: 3px 4px;
    width: 80px;
    display: inline-block;
    padding: 2px 7px 0px 7px;
    margin: 5px ;
}

    .share-btn:hover {
        background-color: #efefef;
        cursor:  pointer;
    }

    #search-results-outer {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 800px;
    }

.manufacturer-box {
    display: inline-block;
    width: 200px;
    height: 180px;
    text-align: center;
    background-color: white;
    margin: 15px;
}

    .manufacturer-box:hover {
        cursor: pointer;
        opacity: .75;
    }

    .manufacturer-box img {
        width: 150px;
    }

.button:hover, .button-inline:hover {
    cursor: pointer;
    background-color: #dfdfdf;
}

#regclickhere {
    color: white;
    text-decoration: underline;
    text-transform: uppercase;
}

#register-btn, #validate-user-btn {
    width: 150px;
    height: 25px;
    margin-top: 20px;
}

#choose-country-outer {
    margin: 30px auto 20px auto;
    width: 350px;
    text-align: center;
}

#choose-country-text {
    font-size: 20px;
    text-align: center;
}

#usa-btn, #canada-btn {
    width: 175px;
    height: 25px;
    margin: 24px auto 0px auto;
}

#home-screen-shot-desktop {
    display: block;
    max-width: 700px;
}

#home-screen-shot-mobile {
    display: none;
    width: 99%;
}

#frm-register input[type="text"], #frm-register input[type="email"], #frm-register input[type="tel"],
#frm-manufacturer input, #frm-contact input[type="text"], #frm-contact input[type="email"], #frm-contact input[type="tel"], 
#frm-contact textarea, select {
    width: 300px;
    margin-top: 20px;
}

#register-category {
    width: 300px;
    text-align: left;
    margin-top: 15px;
}

    #register-category table {
        width: 300px;
    }
  
    #frm-contact textarea {
        height: 85px;
    }

    #chkevhybrid {
        max-width: 20px;
        margin-right: 25px;
    }

select {
    padding: 3px;
}

#already-registered  {    
    margin-top: 18px;
}

#already-registered a {
    color: white;
}

#home-sub-head {
    color:yellow;
    font-size: 14pt;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

a {
    text-decoration: none;
}

#re-register-note {
    font-size: 16px;
}

.modal {
    border: 1px solid black;
    background-color: #efefef;
    color: black;
    height: 217px;
    width: 380px;
    position: fixed;
    left: 50%; /* Moves the left edge to the horizontal center */
    top: 50%; /* Moves the top edge to the vertical center */
    transform: translate(-50%, -50%); /* Adjusts by half of its own size */

    transition: opacity 0.3s ease; /* Smooth transition over 0.3 seconds */
    opacity: 1;
    z-index: 200;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.modal div {
    text-align: center;
}

    .modal:hover {
        background-color: #dfdfdf;
        cursor: pointer;
        color: #787878;
    }

#frm-validate-user {
    margin-bottom: 70px;
}

.install-win-divider {
    background-color: white;
    height: 3px;
    width: 100%;
    margin-bottom: 20px;
}

.underline {
    text-decoration: underline;
}

