#country_modal_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(40, 40, 40, .8);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

#country_modal_wrapper.hidden {
    display: none;
}

#country_modal_wrapper * {
    font-family: "HCo Gotham Narrow", "Gotham Narrow", Arial, Helvetica, sans-serif;
}

#country_modal_wrapper #country_modal {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#country_modal_wrapper #country_modal {
    background-color: #fff;
    width: 100%;
    max-width: 600px;
    border-radius: 4px;
    padding: 56px;
    position: relative;
}

#country_modal_wrapper #country_modal .country_modal_close {
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 5;
    cursor: pointer;
}

#country_modal_wrapper #country_modal .country_modal__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#country_modal_wrapper #country_modal .text {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

#country_modal_wrapper #country_modal .text h2 {
    color: #282828;
    font-size: 32px;
    margin: 0;
}

#country_modal_wrapper #country_modal .text p {
    color: #3E3F44;
    font-size: 16px;
    margin: 0;
}

#country_modal_wrapper #country_modal .country_modal__content .country_selectors {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 20px;
}

.country_selectors .fake-dropdown {
    flex: 1 1 45%;
}

.country_selectors .fake-dropdown .select-content {
    padding: 6px 26px 8px 6px;
    border-radius: 4px 4px 0px 0px;
    border-bottom: 1px solid #E8E8E8;
    background: #FAFAFA;
    min-width: 200px;
    width: 100%;
    position: relative;
    cursor: pointer;
    display: inline-flex;
}

.country_selectors .fake-dropdown .options-list {
    display: none;
    position: absolute;
    border-bottom: 1px solid #E8E8E8;
    background: #FAFAFA;
    width: 100%;
    left: 0;
    top: calc(100% + 2px);
    flex-direction: column;
    gap: 10px;
    padding: 0;
    max-height: 160px;
    overflow-y: auto;
    overflow-x: hidden;
}

.country_selectors .fake-dropdown .options-list li {
    padding: 5px 10px;
}

.country_selectors .fake-dropdown .options-list li img {
    width: 24px;
    height: 24px;
}

.fake-dropdown .options-list li span {
    margin-left: 5px;
}

.country_selectors .fake-dropdown .options-list li:hover {
    background: #f1f0f0;
}

.country_selectors .fake-dropdown.show .options-list {
    display: flex;
    z-index: 99;
}

.country_selectors .fake-dropdown .select-content .select-options {
    padding-right: 26px;
}

.country_selectors .fake-dropdown .select-content .selected-options {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.country_selectors .fake-dropdown .select-content::before {
    content: url("../images/icons/caret-down.svg");
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 24px;
    height: 24px;
}

.country_selectors .fake-dropdown.show .select-content::before {
    content: url("../images/icons/caret-up.svg");
}

#country_modal_wrapper #country_modal .country_modal__footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

#country_modal_wrapper #country_modal .country_modal__footer button,
#multicountry-switcher button {
    display: inline-flex;
    padding: 8px 56px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    font-style: normal;
    font-weight: 350;
}

#country_modal_wrapper #country_modal .country_modal__footer #country_change_now,
#multicountry-switcher #change_now {
    background: #468673;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    min-width: 203px;
}

#country_modal_wrapper #country_modal .country_modal__footer #country_correct {
    color: #000000;
    background: #fff;
}

nav.nav-shop .navbar-shop .navbar-meta {
    display: inline-flex;
    align-items: center;
}

#multicountry-switcher::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 9px 8px;
    border-color: transparent transparent #fff transparent;
    top: -8px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

#multicountry-switcher {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #fff;
    border-radius: 4px;
    padding: 16px;
    top: calc(100% + 4px);
    gap: 16px;
}

#multicountry-switcher-caller {
    cursor: pointer;
}

#multicountry-wrapper.show #multicountry-switcher {
    display: flex;
}

#multicountry-switcher .country_selectors {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#multicountry-switcher-caller span,
#multicountry-switcher-caller {
    color: #1F6280;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}