﻿@font-face {
    font-family: "Gotham Book";
    src: url('/Fonts/Gotham-Book.otf')
}

body, html {
    height: 100%;
    margin: 0;
    font-family: "Gotham Book", sans-serif;
    font-style: normal;
    font-weight: 400;
}

.rep-type {
    font-size: 2em;
}

.rep-name {
    font-size: 1.5em;
    font-weight: 500;
}

#sales-rep-tel, #sales-rep-email, #csa-tel, #csa-email, #appeng-tel, #appeng-email, #busdev-tel, #busdev-email {
    font-size: 1.25em;
}

#sales-rep-info, #csa-info, #appeng-info, #busdev-info {
    line-height: 1.1;
    margin-top: 25px;
    margin-bottom: 25px;
    word-wrap: break-word;
}

.rep-desc {
    font-size: 1.25em;
}

.rep-type {
    font-size: 2em;
}

.rep-role {
    font-size: 1.25em;
    font-weight: 500;
}

.rep-name {
    font-size: 1.5em;
}

.rep-desc {
    font-size: 1em;
}

.tab-link {
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 14px;
    width: 20%;
}

.tab-link:focus {
    border: 2px solid black;
    border-radius: 4px;
}

.tabs {
    display: flex;
    align-items: stretch;
    min-height: 100%;
}
/*Find your rep*/
.tab-link:nth-child(4n+1) {
    background-color: #f8b445;
}
/*Location Information*/
.tab-link:nth-child(4n+2) {
    background-color: #127eb3;
}
/*Request a quote*/
.tab-link:nth-child(4n+3) {
    background-color: #148ac4;
}
/*Ask a Question*/
.tab-link:nth-child(4n+4) {
    background-color: #319cd8;
}
/*Trade Show Calendar*/
.tab-link:nth-child(4n+5) {
    background-color: #84caf5;
}
.tab-content {
    display: none;
    padding: 20px 20px 0px 20px;
    height: 100%;
    color: #58595B;
}

#select-region-btn {
    margin-left: 0px;
    margin-top: 10px;
    margin-bottom: 20px;
}

#region > #region-dropdown {
    height: 35px;
    margin-top: 5px;
    margin-bottom: 5px;
}

#region > #country-dropdown {
    margin-left: 10px;
    margin-top: 5px;
    display: none;
    height: 35px;
}

#region > #state-dropdown {
    margin-left: 10px;
    margin-top: 5px;
    display: none;
    height: 35px;
}

#region > #province-dropdown {
    margin-left: 10px;
    margin-top: 5px;
    display: none;
    height: 35px;
}

#region > h3 {
    margin: 10px 30px 20px 0px;
}

label[for="non-medical"] {
    margin: 10px 30px 20px 10px;
}

label[for="medical"] {
    margin: 10px 30px 20px 10px;
}

@media screen and (max-width: 767px) {
    .col-sm-8 {
        width: 100%;
    }

    .col-sm-4 {
        width: 100%;
        margin: auto;
    }

    .tab-link {
        font-size: 10px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    #region > #region-dropdown {
        margin-left: 10px;
    }
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
    .find-your-rep-sidebar {
       margin-left: 35px; 
    }
}

.dark label[for="medical"] {
    color: #e2e2e2;
}

.dark label[for="non-medical"] {
    color: #e2e2e2;
}

.dark .tab-link {
    color: #121212;
}

.dark .tab-link:focus {
    border: 2px solid white;
    border-radius: 4px;
}

@media (prefers-color-scheme: dark) {
    label[for="medical"] {
        color: #e2e2e2;
    }

    label[for="non-medical"] {
        color: #e2e2e2;
    }

    .tab-link {
        color: #121212;
    }

    .tab-link:focus {
        border: 2px solid white;
        border-radius: 4px;
    }

    .light label[for="medical"] {
        color: #58595B;
    }

    .light label[for="non-medical"] {
        color: #58595B;
    }

    .light .tab-link {
        color: white;
    }

    .light .tab-link:focus {
        border: 2px solid black;
        border-radius: 4px;
    }
}