.geo__modal {
    max-width: 1244px;
    display: block;
    width: 100%;
    margin: 0 auto;
    border-top: 3px solid rgb(230, 81, 0);
    background: #ffffff;
    margin-top: 10%;
    -webkit-box-shadow: 0 7px 18px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 7px 18px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 7px 18px 0 rgba(0, 0, 0, 0.15);
}
.geo__modal__header {
    background: #eaf0f2;
    padding: 15px 10px 15px;
    position: relative;
}
.gm__head__title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 18px;
}
.gm__head__title__mob {
    margin-top: 18px;
    margin-bottom: 0 !important;
}
.geo__modal__form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}
.geo__modal__form input {
    display: block;
    font-size: 13px;
    padding: 5px 10px;
    /*margin-right: 10px;*/
    width: 100%;
    height: 34px;
    border: 1px solid #ffffff;
    background: #ffffff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none !important;
}
/*.geo__modal__form .btn {*/
    /*display: block;*/
    /*margin: 0;*/
    /*padding: 7px 12px 8px;*/
    /*text-align: center;*/
    /*width: 90px;*/
/*}*/
.gm__close {
    display: block;
    width: 17px;
    height: 17px;
    position: absolute;
    z-index: 2;
    top: 15px;
    right: 15px;
}
.gm__close span {
    top: 6px;
    position: relative;
    background-color: rgb(194, 203, 210);
    width: 18px;
    height: 5px;
    display: block;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.gm__close span:after {
    content: '';
    background-color: rgb(194, 203, 210);
    width: 18px;
    height: 5px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.gm__close:hover span, .gm__close:hover span:after {
    background-color: #e65100;
}
.gm__list.d-none, .gm__list__city.d-none {
    display: none !important;
}
/**/
#gm__form__wrp__list {
    position: absolute;
    top: 100%;
    z-index: 10;
    height: auto;
    max-height: 200px;
    background: #fff;
    width: 100%;
    padding: 10px;
    overflow: auto;
    -webkit-box-shadow: 4px 7px 6px 0 rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 7px 6px 0 rgba(34, 60, 80, 0.2);
    box-shadow: 4px 7px 6px 0 rgba(34, 60, 80, 0.2);
}
#gm__form__wrp__list li {
    display: block;
}
#gm__form__wrp__list li a {
    display: block;
}

/* стилизация ползунка */
.gm__list, .gm__list__city, #gm__form__wrp__list {
    scrollbar-color: #e65100 #999999;     /* «цвет ползунка» «цвет полосы скроллбара» */
    scrollbar-width: thin;  /* толщина */
}
.gm__list::-webkit-scrollbar, .gm__list__city::-webkit-scrollbar, #gm__form__wrp__list::-webkit-scrollbar {
    width: 5px; /* ширина для вертикального скролла */
    height: 5px; /* высота для горизонтального скролла */
    background-color: #999999;
}
/* ползунок скроллбара */
.gm__list::-webkit-scrollbar-thumb, .gm__list__city::-webkit-scrollbar-thumb, #gm__form__wrp__list::-webkit-scrollbar-thumb {
    background-color: #e65100;
    border-radius: 0;
    box-shadow: none;
}
.gm__list::-webkit-scrollbar-thumb:hover, .gm__list__city::-webkit-scrollbar-thumb:hover, #gm__form__wrp__list::-webkit-scrollbar-thumb:hover {
    background-color: #252525;
}
/**/
.geo__modal_overl {
    background-color: rgba(0, 0, 0, 0.502);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    max-width: 100%;
    max-height: 100%;
    z-index: 10000;
}
.geo__modal_overl.d-none {
    display: none !important;
}
/* header */
header {
    z-index: 100;
}
.ghead {
    font-size: 16px;
    position: relative;
    display: inline-block;
}
.ghead span {
    color: #95979a;
    display: inline-block;
    margin-right: 6px;
}
.ghead a {
    display: inline-block;
    color: #333333;
    position: relative;
    line-height: 1.2;
}
.ghead a:hover {
    color: #e65100;
}
.ghead a:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px dashed #333333;
}
.ghead a:hover:after {
    border-color: #e65100;
}