*,
*:before,
*:after {
    box-sizing: border-box;
}

 :root {
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    overflow-x: hidden;
    --green: #025226;
    --text: #000000;
}

body {
    color: var(--text);
    font-size: inherit !important;
    font-family: inherit !important;
    --side-margin: 1px;
    overflow: inherit;
}

p {
    margin: 0;
}

hr {
    color: var(--green);
    border: 1px solid;
}

p+p {
    margin-top: .75em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    margin-top: 0;
    margin-bottom: .5em;
    padding: 0;
    font-weight: bold;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 29px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 22px;
}


/*  Links -------------------

 */

a {
    color: inherit;
    text-decoration: none;
    transition: .125s color ease-in-out;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: var(--green);
}

.button-link,
main input[type="submit"]:not(#mms-main input) {
    /* :not exception needed to avoid messing with all sorts of different buttons in the MMS  */
    background: transparent;
    text-transform: capitalize;
    padding: 1.25em 3ch;
    display: block;
    width: fit-content;
    color: var(--green);
    border-radius: 2px;
    border: 1px solid var(--green);
    text-align: center;
    line-height: 1;
    transition: color .125s ease-in-out, .125s background ease-in-out;
    text-shadow: none;
}

.button-link:not(:last-child) {
    margin-bottom: .5em;
}

.button-link:hover,
.button-link:focus {
    text-decoration: none;
    color: var(--green);
    background: white;
}

.button-link+*:not(.button-link) {
    padding-top: 1.5em;
}

li+li.button-link {
    margin-bottom: .75rem;
}

.green-link {
    color: var(--green);
}


/*
--------------------------------------------------------------------------
 Objects
--------------------------------------------------------------------------
 */

.offscreen {
    /* This class allows an element to be read by a screenreader without appearing in the viewport  */
    position: absolute;
    left: -666vw;
}


/*  Wrappers
    *.wrapper acts as a more symantic stand in for <container><row><col-md-12></col-md-12></row></container> in sections of this build that don't require stacking columns 
 */

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width:768px) {
    body {
        --side-margin: calc((100vw - 750px) / 2);
    }
    .wrapper {
        width: 750px;
    }
}

@media (min-width:991px) {
    body {
        --side-margin: calc((100vw - 987px) / 2);
    }
    .wrapper {
        width: 970px;
    }
}

@media (min-width:1201px) {
    body {
        --side-margin: calc((100vw - 1140px) / 2);
    }
    .wrapper {
        width: 1170px;
    }
}

.full-width {
    /* Make an element span the width of the viewport */
    position: relative;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    width: calc(100vw + 30px);
}

#homepage-main .full-width [class*="col-"],
#subpage-main .full-width [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
    /* transform: translateX(-15px); */
}

@media (max-width: 990px) {
    .full-width {
        width: calc(100vw + 120px);
    }
}

.img-responsive.full-width:not(#mycanvas img) {
    /* Make sure that when the system automatically adds the class .img-responsive that it doesn't break .full-width. This is not applied to images viewed on the Grid Editor page. */
    max-width: unset;
}

#gm-canvas .full-width {
    left: unset;
    right: unset;
    width: unset;
}

.row-background:not(#mycanvas .row-background) {
    position: relative;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    /* padding-left: 15px; */
}

.row-background:not(#mycanvas .row-background) h1,
.row-background:not(#mycanvas .row-background) h2,
.row-background:not(#mycanvas .row-background) p {
    color: white;
}

.row-background:not(#mycanvas .row-background)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    display: block;
    background-color: var(--green);
    /* transform: translateX(30px); */
}

@media (min-width: 992px) {
    .row-background:not(#mycanvas .row-background)>.col-md-9 {
        width: calc(75% - 15px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-8 {
        width: calc(66.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-7 {
        width: calc(58.3% - 15px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-6 {
        width: calc(50% - 15px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-5 {
        width: calc(41.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-4 {
        width: calc(33.3% - 20px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-3 {
        width: calc(25% - 20px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-2 {
        width: calc(20% - 20px);
    }
}

@media (max-width: 990px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    /* .full-width {
        --side-margin: -81px;
        left: var(--side-margin);
        right: var(--side-margin);
        width: calc(100vw + 30px);
    } */
    .row-background:not(#mycanvas .row-background) {
        padding-right: 15px;
    }
    .row-background::before {
        left: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .row-background {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (min-width: 767px) {
    /*The following styles are meant to give more space to the label column in contact forms that are too narrow for the entire label to be read normally*/
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-2 {
        width: 25%;
        padding-right: 1em;
    }
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-10 {
        width: 75%;
        padding-left: 0;
    }
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-offset-2 {
        margin-left: 25%;
    }
    /*^^Adjusts the form-group placement of the reCAPTCHA iframe and submit buttom to match the new widths from the styles above*/
}

blockquote {
    font-size: inherit;
    border-left-color: var(--secondary);
}

blockquote p {
    font-size: 1.05em;
}

grammarly-btn {
    display: none;
    /*If someone copy/pastes text from Grammarly it will add this invisible button and cause the page to scroll horizontally. This style hides that.*/
}

.ui-widget {
    /* Part of some pages in the MMS, this style tells it not to overwrite the font with Verdana */
    font-family: revert;
}


/* Feed items */


/* Slideshows defaults */

.carousel {
    font-size: 20px;
}

.carousel-control.left,
.carousel-control.right {
    display: none;
}


/*--end slideshow-defaults---------*/


/*----------Responsive Nivo*/

div[id^=slider-container-FD],
div[id^=slider_FD],
.nivoSlider img {
    max-width: 100% !important;
    height: auto !important;
}


/*----------Nivo Controls*/

.nivo-prevNav,
.nivo-nextNav {
    background-image: none !important;
    width: 25px !important;
    top: 25% !important;
    /*Fallback for browsers that don't support calc*/
    top: calc( 50% - 50px) !important;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 75px;
    font-family: Arial, sans-serif;
    text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
}

.nivo-prevNav:hover,
.nivo-nextNav:hover {
    text-decoration: none;
    color: #ae0e0d;
    text-shadow: none;
}

.nivo-prevNav {
    left: 10px !important;
}

.nivo-nextNav {
    right: 10px !important;
}

.nivo-prevNav:after {
    content: "‹";
}

.nivo-nextNav:after {
    content: "›";
}


/*  Modals ---------------------------------
    ----------------------------------------
 */

.modal-open .modal {
    display: flex;
}

.modal-dialog {
    max-width: 260px;
    font-size: 16px;
    margin: auto;
}

.modal-header,
.modal-body {
    padding: .5rem 1rem;
}

.modal-header .close {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.modal h2 {
    font-size: 20px;
    opacity: .9;
}

.modal a {
    display: block;
    margin-bottom: .5em;
}


/*  Login Forms ----------------------------
----------------------------------------
*/

.modal input[name="Username"],
.modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
    border: 1px solid rgba(68, 68, 68, .5);
}


/*--------------------------------------------------------
    Header
--------------------------------------------------------*/

body>header {
    display: flex;
    gap: 1rem 30px;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

body>header::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    background: var(--green);
    z-index: -1;
}

#homepage-root body>header {
    position: absolute;
    right: var(--side-margin);
    z-index: 10;
    padding-bottom: 6rem;
}

#homepage-root body>header::before {
    opacity: .75;
    background: linear-gradient(180deg, rgba(2, 82, 38, 1) 0%, rgba(2, 82, 38, 0) 100%);
}

@media (max-width: 990px) {
    #homepage-root body>header {
        right: 0;
        left: 0;
    }
}


/* Mobile menu trigger  */

.mobileMenuTrigger:not(.triggerClose) {
    border: none;
    padding: 0;
    color: white;
    transition: color .125s ease-in-out;
    display: inline-flex;
    border-radius: 3px;
    background: transparent;
    display: flex;
    flex-direction: row-reverse;
    gap: 1ch;
    align-items: center;
}

.mobileMenuTrigger label {
    margin: 0;
    cursor: pointer;
}

.menu-trigger {
    width: 30px;
}


/* Search */

.searchbox {
    position: relative;
    width: 260px;
    height: 30px;
}

.search-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .5rem 0;
    padding-right: 30px;
    background: none;
    border: none;
    border-bottom: 2px solid white;
}

.search-input:focus {
    Accesibility outline: inherit;
}

.search-input::placeholder {
    color: white;
    font-weight: 600;
}

.search-button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 30px;
    background: none;
    border: none;
    appearance: none;
    background: url(../images/search-new.svg.php?fc=fff);
    background-position: center;
    background-repeat: no-repeat;
    color: transparent;
}


/* Login modal */

.modal-open .modal {
    display: flex;
}

.modal-dialog {
    max-width: 100%;
    font-size: 16px;
    margin: auto;
    width: 300px;
}

.modal-content {
    margin-top: 20px;
    border-radius: 0;
}

.modal-header,
.modal-body {
    padding: .5rem 1rem;
}

.modal-header .close {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.modal h2 {
    font-size: 24px;
    margin-top: 0;
}

.modal-header,
.modal-body {
    padding: 1em 2ch;
}

.modal input[name="Username"],
.modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
    border: 1px solid rgba(68, 68, 68, .5);
}

.modal a {
    display: block;
    margin-bottom: .5em;
}


/*--------------------------------------------------------
    Mobile navigation
--------------------------------------------------------*/

#mobileMenuWrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 50;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    /* min-width: 50vw; */
    padding: 0 1.5em;
    box-shadow: 0 3px 14px -2px rgb(0 0 0 / 40%);
    transition: left .125s ease-in-out;
    background: var(--green);
    font-size: 28px;
}

#mobileMenuWrapper.open {
    left: 0;
}

#mobileMenuWrapper ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#mobileMenuWrapper li {
    display: block;
    margin-bottom: .7rem;
}

#mobileMenuWrapper .mobile-search-close {
    display: flex;
    justify-content: space-between;
}

#mobileMenuWrapper a {
    background-color: transparent;
    text-decoration: none;
    color: white;
}

#mobileMenuWrapper .mDropdown {
    display: none;
    padding-top: .7rem;
}

#mobileMenuWrapper .mDropdown.open {
    display: block;
}

.triggerClose {
    text-align: right;
}

.triggerClose {
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    color: white;
    cursor: pointer;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    z-index: 1;
    opacity: 0;
    transition: .125s opacity ease-in-out;
    pointer-events: none;
}

body.menu-open::before {
    opacity: .5;
}

#mobileMenuWrapper #mobile-menu {
    overflow: auto;
    padding: 1rem;
}

#mobile-menu .login-item button {
    background: var(--green);
    padding: .5em 2ch .6em;
    border-radius: 3px;
}

.mobile-login button {
    color: var(--gold);
    padding: 0;
    border: 0;
    background: none;
    font-size: 16px;
}


/*
--------------------------------------------------------------------------
 Main
--------------------------------------------------------------------------
 */

main {
    min-height: calc(100vh - 94px - 530px);
    position: relative;
}

main:not(#homepage-main) {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    position: relative;
}

#subpage-main::before,
#mms-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    border-bottom: 1px solid #E3E3E3;
}

#homepage-main img.full-width {
    object-fit: cover;
    width: 100%;
    z-index: -1;
}

#land-acknowledgement-row>.column::after {
    content: '';
    position: absolute;
    bottom: -2.5rem;
    left: 15px;
    right: 15px;
    border-bottom: 1px solid white;
}

#whats-happening-row .carousel-indicators {
    display: flex;
    gap: 3px;
    top: -2.5rem;
    bottom: unset;
    right: 0;
    margin: 0;
    width: fit-content;
    left: unset;
}

#whats-happening-row .carousel-indicators li {
    margin: 0;
    background: var(--green);
    width: 14px;
    height: 14px;
}

#whats-happening-row .carousel-indicators li.active {
    border: 2px solid white;
    background: white;
    width: 14px;
    height: 14px;
}

@media(max-width: 990px) {
    .col-md-6.col-sm-12+.col-sm-12 {
        margin-top: 30px;
    }
}

@media (max-width: 900px) {
    #subpage-main:not(.full-background),
    #mms-main {
        margin-bottom: 2em;
    }
}

@media (max-width: 767px) {
    #subpage-main {
        padding-top: 1.5em;
        padding-bottom: 1.5em;
    }
    #subpage-main .row {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    #subpage-main [class*="col-md"]+[class*="col-md"] {
        margin-top: 1rem;
    }
    /* #homepage-main .row {
        padding: 0 15px;
    } */
}

@media (min-width: 768px) {
    #subpage-main .row {
        /*These two styles can be tweaked if needed, but they are a handy default for spacing rows (and then columns once the screen hits the col-xs breakpoint on subpages*/
        margin-bottom: 3.5em;
    }
    #subpage-main div[class^="col"]+.col-md-12 {
        margin-top: 3.5em;
    }
}


/*  Slideshow Row --------------------------
    ----------------------------------------
 */

#slideshow-row img {
    width: 100%;
    max-height: 90vh;
    object-fit: cover;
}

#slideshow-row p {
    text-align: center;
    position: relative;
    padding: .25em .75em;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}

#slideshow-row p::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--green);
    opacity: .5;
    z-index: -1;
}

#slideshow-row .caption-text {
    font-size: 70px;
    font-weight: bold;
}

@media (max-width: 1600px) {
    #slideshow-row .caption-text {
        font-size: 60px;
    }
}

@media (max-width: 1400px) {
    #slideshow-row .caption-text {
        font-size: 50px;
    }
}

@media (max-width: 1130px) {
    #slideshow-row .caption-text {
        font-size: 40px;
    }
}

@media (max-width: 990px) {
    #slideshow-row .carousel-caption {
        bottom: 0;
    }
}

@media (max-width: 800px) {
    #slideshow-row .carousel-caption {
        left: 0;
        right: 0;
        padding-bottom: 1em;
    }
    #slideshow-row p {
        width: initial;
        padding-right: 100px;
    }
    #slideshow-row p+p {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    #slideshow-row p {
        padding-right: 140px;
    }
    #slideshow-row .caption-text {
        font-size: 20px;
    }
    #slideshow-row .alt-text {
        margin: 0;
        font-size: 16px;
    }
}


/*  Subpages -------------------------------
    ----------------------------------------
 */

#title-banner+#subpage-main>.row:first-child {
    /* Hide empty row that background-image once lived in */
    display: none;
}

#title-banner {
    position: relative;
}

#title-banner img {
    width: 100%;
    position: relative;
    z-index: -1;
}

#title-banner figcaption {
    position: absolute;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    padding: 0;
}

#title-banner figcaption::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    background: var(--green);
    opacity: .5;
    z-index: -1;
}

#title-banner h1 {
    color: white;
    position: relative;
    margin: 0;
    padding: 1rem 0;
}


/*  Grid Page Editor workarounds -----------
----------------------------------------
 */


/*  Footer -------------------
    ----------------------------------------
 */

footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 501px) {
    footer {
        font-size: 15px;
    }
}

.address-section {
    grid-row: 1/3;
    grid-row: 1/3;
    padding: 2rem;
    padding-left: 0;
    background: white;
}

@media (min-width: 851px) {
    .footer-links-section {
        display: contents;
    }
}

.social-newsletter-section {
    grid-column: 2/-1;
    display: contents;
    grid-template-columns: repeat(3, 1fr);
}

.footer-links-section,
.social-newsletter-section {
    position: relative;
}

.footer-links-section::before,
.social-newsletter-section::after,
.social-newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -666vw;
    left: var(--side-margin);
    background: #F2F2F2;
    z-index: -1;
}

.social-newsletter-section::after {
    border-top: 1px solid #E3E3E3;
    z-index: 1;
    background: none;
    pointer-events: none;
}

.footer-links-section>div,
.social-newsletter-section>div {
    padding: 1rem 2rem;
    background: #F2F2F2;
}

@media (min-width: 851px) {
    .social-newsletter-section>div {
        border-top: 1px solid #E3E3E3;
    }
    .footer-links-section>div+div,
    .social-newsletter-section>div+div {
        border-left: 1px solid #E3E3E3;
    }
}

.footer-links-section>div:last-child,
.social-newsletter-section>div:last-child {
    padding-right: 0;
}

.newsletter-section {
    grid-column: 3/-1;
    grid-row: 2;
}

.newsletter-section .col-sm-offset-2 {
    margin-left: 0;
    padding-left: 0;
}

[action="newsletter_form_resp.php"] {
    display: flex;
    align-items: center;
}

[action="newsletter_form_resp.php"] .form-group,
[action="newsletter_form_resp.php"] .form-group>div {
    display: contents;
}

[action="newsletter_form_resp.php"] label {
    margin-right: 0.5ch;
}

[action="newsletter_form_resp.php"] [name="email"] {
    margin-right: 15px;
}

.grecaptcha-badge {
    display: none !important;
}

.copyright-section {
    grid-row: 3;
    grid-column: 1/-1;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    position: relative;
    background: white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copyright-section::before,
.copyright-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    z-index: -1;
    pointer-events: none;
}

.copyright-section::before {
    background: white;
}

.copyright-section::after {
    border-top: 1px solid #E3E3E3;
    z-index: 1;
}

footer [alt="Erland Lee Museum"] {
    /* width: 141px; */
    margin-bottom: 1rem;
}

footer h2 {
    font-size: 18px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: normal;
}

.footer-links-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-list {
    list-style: none;
    align-self: flex-end;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.social-list rect {
    display: none;
}

.social-list li path {
    fill: black;
    transition: .125s fill ease-in-out;
}

.social-list li:hover path,
.social-list li:focus path {
    fill: var(--green);
    transition: .125s fill ease-in-out;
}

@media (max-width: 850px) {
    footer {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-links-section {
        grid-row: 1/3;
    }
    .footer-links-section::before,
    .social-newsletter-section::after,
    .social-newsletter-section::before {
        left: 200px;
    }
    .address-section,
    .footer-links-section>div,
    .social-newsletter-section>div {
        padding: 1rem;
    }
    .address-section {
        padding-left: 0;
    }
}

@media (max-width: 700px) {
    footer {
        grid-template-columns: 1fr 1fr;
        gap: 1rem 30px;
        padding-top: 2rem;
    }
    .address-section,
    .footer-links-section,
    .social-newsletter-section {
        grid-column: unset;
        grid-row: unset;
    }
    .social-newsletter-section {
        display: block;
        grid-column: 1/3;
    }
    .footer-links-section::before,
    .social-newsletter-section::after,
    .social-newsletter-section::before {
        content: none;
    }
    .address-section,
    .footer-links-section>div,
    .social-newsletter-section>div {
        background: transparent;
        padding: 0;
    }
}

@media (max-width: 600px) {
    body::before,
    footer *::before,
    footer *::after {
        content: none !important;
    }
}


/*--------------------------------------------------------
    MMS Styles
--------------------------------------------------------*/


/* MMS Member Menu icons */

@media (min-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 190px;
    }
}

@media (min-width: 990px) and (max-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 155px;
    }
}

@media (min-width: 767px) and (max-width: 990px) {
    .nav-tabs li.dropdown {
        width: 120px;
    }
}