.user-geo-position-label {
    margin-right: 6px;
}

.user-geo-position-label,
.user-geo-position-value,
.user-geo-position-value-link {
    vertical-align: middle;
    display: inline-block;
    font-size: 13px;
}

.user-geo-position-value-link {
    vertical-align: middle;
    max-width: 130px;
    overflow: hidden;
}

.user-geo-position-value-link span {
    text-overflow: ellipsis;
    vertical-align: middle;
    display: inline-block;
    white-space: nowrap;
    max-width: 130px;
    overflow: hidden;
}

#city-select-window {
    -webkit-transition: 0.1s all ease-in-out;
    -o-transition: 0.1s all ease-in-out;
    transition: 0.1s all ease-in-out;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    color: #000000;
    overflow: auto;
    z-index: 10500;
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;

    .hidden {
        display: none;
    }
}

#city-select-window .city-select-window-container {
    overflow: hidden;
    position: absolute;
    min-height: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    box-shadow: 1px 1px 12px rgba(60, 60, 60, 0.3);
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    -moz-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);

    -webkit-animation-duration: 0.2s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-name: bottomToCenter;
    animation-name: bottomToCenter;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    .city-select-window-container-content {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 12px;

        .header-row {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: space-between;

            .header-logo {
                padding: 20px;
            }

            .header-close-button {
                display: flex;
                flex-direction: column;
                align-items: center;
                height: 40px;
                width: 40px;
                justify-content: center;
                padding: 20px;

                img {
                    display: block;
                    height: 38px;
                    width: 38px;
                    cursor: pointer;
                }
            }
        }

        .search-city-container {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: center;

            .search-input-container {
                border-radius: 50px;
                background-color: #d6d6d6;
                width: 96%;

                .search-input {
                    background: url(images/searchH2.svg) 14px 50% no-repeat transparent;
                    -webkit-box-sizing: border-box;
                    -moz-box-sizing: border-box;
                    box-sizing: border-box;
                    padding-left: 42px;
                    height: 50px;
                    width: 100%;
                    border: 0;
                    font-size: 16px;

                    &:hover {
                        text-decoration: underline;
                        text-decoration-color: #0061b2;
                        text-decoration-style: solid;
                    }

                }

            }
        }

        .all-city-collection-container {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: center;


            .all-city-collection {
                box-sizing: border-box;
                display: flex;
                flex-direction: row;
                gap: 20px;
                width: 100%;
                padding: 20px 4%;
                height: 800px;
                overflow-y: scroll;
                flex-wrap: wrap;

                .city-names-block {
                    display: flex;
                    flex-direction: column;
                    flex-wrap: nowrap;
                    min-width: 170px;
                    width: 170px;
                    align-items: flex-start;

                    span.first-letter {
                        font-size: 22px;
                        font-weight: 600;
                    }

                    .city-name {
                        font-size: 14px;
                        cursor: pointer;
                        line-height: 40px;
                        height: 40px;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;

                        &:hover {
                            text-decoration: underline;
                            text-decoration-color: #0061b2;
                            text-decoration-style: dotted;
                        }
                    }
                }
            }

        }
    }

}

@media all and (max-width: 400px) {
    #city-select-window .city-select-window-container {
        .city-select-window-container-content {
            .all-city-collection-container {
                .all-city-collection {
                    height: 420px;
                }
            }
        }
    }
}

#city-select-ref-window {
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    box-sizing: border-box;
    position: absolute;
    border-radius: 4px;
    text-align: center;
    line-height: 14px;
    padding: 24px;
    display: none;
    width: 280px;
    z-index: 99;
    right: 0px;
    top: 0px;
}

#city-select-ref-window.visible {
    display: block;
}

#city-select-ref-window.centred {
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 0px;
    box-shadow: none;
    position: fixed;
    padding: 0px;
    height: 100%;
    width: 100%;
}

#city-select-ref-window.centred .city-select-ref-window-city-container {
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    box-sizing: border-box;
    border-radius: 4px;
    position: absolute;
    padding: 24px;
    width: 280px;
    left: 50%;
    top: 50%;
}

.city-select-ref-window-city-label {
    margin-bottom: 12px;
    line-height: normal;
    font-size: 14px;
}

.city-select-ref-window-city-value {
    font-family: "robotobold";
    margin-bottom: 12px;
    line-height: 21px;
    font-size: 18px;
}

/*.city-select-window-wp {
    vertical-align: middle;
    display: inline-block;
    line-height: 21px;
    width: 100%;
}*/
/*
#city-select-window .city-select-window-heading {
    background-color: #424242;
    position: relative;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    color: #ffffff;
}

#city-select-window .city-select-window-list {
    max-height: 180px;
    margin-top: 24px;
    padding: 0 24px;
    overflow: auto;
}

#city-select-window .city-select-window-list-item {
    !*text-transform: uppercase;*!
    overflow: hidden;
    float: left;
    width: 25%;
}

#city-select-window .city-select-window-list-item a {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    text-decoration: none;
    line-height: 37px;
    overflow: hidden;
    color: #000000;
    height: 37px;
}

#city-select-window .city-select-window-list-item a:active {
    position: relative;
    top: 1px;
}

#city-select-window .city-select-window-list-item span {
    vertical-align: middle;
    display: inline-block;
    line-height: 21px;
}

.city-select-window-search {
    margin-top: 24px;
    padding: 0 24px;
}

.city-select-window-search-input {
    background: url(images/geo-search.png) 12px 50% no-repeat #f6f6f6;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border: 1px solid #e6e6e6;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "roboto_ltregular";
    border-radius: 2px;
    padding: 0 42px;
    font-size: 14px;
    height: 48px;
    width: 100%;
}

.city-select-window-search-input:focus {
    border: 1px solid #aaaaaa;
}
.city-select-window-city-container {
    text-align: center;
    margin-top: 24px;
}
.city-select-window-city-label,
.city-select-window-city-value {
    display: inline-block;
}
.city-select-window-city-value {
    !*text-transform: uppercase;*!
    font-family: "robotoBold";
}

.city-select-window-button-container {
    margin-bottom: 24px;
    text-align: center;
    margin-top: 24px;
}

.city-select-window-button {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    !*text-transform: uppercase;*!
    color: #ffffff !important;
    vertical-align: middle;
    display: inline-block;
    text-decoration: none;
    border-radius: 2px;
    text-align: center;
    position: relative;
    line-height: 50px;
    padding: 0 36px;
    font-size: 14px;
    opacity: 0.9;
    height: 50px;
}

.city-select-window-button:active {
    position: relative;
    top: 1px;
}

.city-select-window-button.modifed {
    border-radius: 4px;
    opacity: 1;
}

.city-select-window-button.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.city-select-window-button.loading {
    opacity: 0.5;
}

.city-select-window-button.loading #city-select-window-fast-loader {
    display: block;
    opacity: 1;
}

.city-select-window-search-values-cn {
    position: relative;
}

.city-select-window-search-values {
    position: absolute;
    max-height: 141px;
    overflow: auto;
    z-index: 99;
    width: 100%;
    left: 0px;
    top: 0px;
}

.city-select-window-search-values .city-select-list-item {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-top: 1px solid #e6e6e6;
    background-color: #eeeeee;
}

.city-select-window-search-values .city-select-list-item:hover {
    background-color: #e1e1e1;
}

.city-select-window-search-values .city-select-list-item:first-child {
    border: none;
}

.city-select-window-search-values .city-select-list-item a {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #000000 !important;
    text-decoration: none;
    line-height: 35px;
    padding: 0 24px;
    display: block;
    height: 35px;
}

.city-select-window-search-values .city-select-list-item a:hover {
    opacity: 0.8;
}

.city-select-window-search-values .city-select-list-item a:active {
    position: relative;
    top: 1px;
}

#city-select-window .city-select-window-exit {
    position: absolute;
    display: block;
    height: 21px;
    width: 21px;
    right: 20px;
    top: 20px;
}

#city-select-window .city-select-window-exit {
    background: url(images/exit.png) 0 0 no-repeat transparent;
}

#city-select-window .city-select-window-exit:hover {
    background-position: 0 -21px;
}

#city-select-window .city-select-window-exit:active {
    background-position: 0 -42px;
}


.get-location-ref-window-confirm-button {
    width: 100%;
}

.get-location-ref-window-confirm-button.loading {
    background-image: url(images/loader-38px.svg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: none;
    opacity: 0.9;
}

.get-location-ref-window-confirm {
    margin-bottom: 12px;
}

!*
@media all and (max-width: 850px) {

    #city-select-window .city-select-window-container {
        transform: translateX(0) translateY(-50%);
        width: 100%;
        left: 0px;
    }

}

@media all and (max-width: 700px) {

    #city-select-window .city-select-window-list-item {
        width: 33.333%;
    }

    #city-select-window .city-select-window-container {
        padding: 0 12px;
    }

}

@media all and (max-width: 500px) {

    #city-select-window .city-select-window-list-item {
        width: 50%;
    }

}

@media all and (max-width: 400px) {

    #city-select-window .city-select-window-list-item {
        width: 100%;
    }

}
*!

!*loader*!
#city-select-window-fast-loader {
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    position: absolute;
    transform: scale(0.6);
    -o-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    margin-left: -24px;
    display: none;
    height: 48px;
    width: 48px;
    opacity: 0;
    left: 50%;
    top: 0px;
}*/
@keyframes bottomToCenter {
    from {
        -moz-transform: translateY(500%) translateX(-50%);
        -o-transform: translateY(500%) translateX(-50%);
        -webkit-transform: translateY(500%) translateX(-50%);
        transform: translateY(500%) translateX(-50%);
    }
    100% {
        -moz-transform: translateY(-50%) translateX(-50%);
        -o-transform: translateY(-50%) translateX(-50%);
        -webkit-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
    }
}

/*.f_circleG {
    position: absolute;
    background-color: rgb(255, 255, 255);
    height: 9px;
    width: 9px;
    display: block;
    border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    animation-name: f_fadeG;
    -o-animation-name: f_fadeG;
    -ms-animation-name: f_fadeG;
    -webkit-animation-name: f_fadeG;
    -moz-animation-name: f_fadeG;
    animation-duration: 0.522s;
    -o-animation-duration: 0.522s;
    -ms-animation-duration: 0.522s;
    -webkit-animation-duration: 0.522s;
    -moz-animation-duration: 0.522s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
}

#frotateG_01 {
    left: 0;
    top: 19px;
    animation-delay: 0.1995s;
    -o-animation-delay: 0.1995s;
    -ms-animation-delay: 0.1995s;
    -webkit-animation-delay: 0.1995s;
    -moz-animation-delay: 0.1995s;
}

#frotateG_02 {
    left: 6px;
    top: 6px;
    animation-delay: 0.256s;
    -o-animation-delay: 0.256s;
    -ms-animation-delay: 0.256s;
    -webkit-animation-delay: 0.256s;
    -moz-animation-delay: 0.256s;
}

#frotateG_03 {
    left: 19px;
    top: 0;
    animation-delay: 0.3225s;
    -o-animation-delay: 0.3225s;
    -ms-animation-delay: 0.3225s;
    -webkit-animation-delay: 0.3225s;
    -moz-animation-delay: 0.3225s;
}

#frotateG_04 {
    right: 6px;
    top: 6px;
    animation-delay: 0.389s;
    -o-animation-delay: 0.389s;
    -ms-animation-delay: 0.389s;
    -webkit-animation-delay: 0.389s;
    -moz-animation-delay: 0.389s;
}

#frotateG_05 {
    right: 0;
    top: 19px;
    animation-delay: 0.4555s;
    -o-animation-delay: 0.4555s;
    -ms-animation-delay: 0.4555s;
    -webkit-animation-delay: 0.4555s;
    -moz-animation-delay: 0.4555s;
}

#frotateG_06 {
    right: 6px;
    bottom: 6px;
    animation-delay: 0.522s;
    -o-animation-delay: 0.522s;
    -ms-animation-delay: 0.522s;
    -webkit-animation-delay: 0.522s;
    -moz-animation-delay: 0.522s;
}

#frotateG_07 {
    left: 19px;
    bottom: 0;
    animation-delay: 0.5885s;
    -o-animation-delay: 0.5885s;
    -ms-animation-delay: 0.5885s;
    -webkit-animation-delay: 0.5885s;
    -moz-animation-delay: 0.5885s;
}

#frotateG_08 {
    left: 6px;
    bottom: 6px;
    animation-delay: 0.645s;
    -o-animation-delay: 0.645s;
    -ms-animation-delay: 0.645s;
    -webkit-animation-delay: 0.645s;
    -moz-animation-delay: 0.645s;
}


@keyframes f_fadeG {
    0% {
        background-color: rgb(0, 0, 0);
    }

    100% {
        background-color: rgb(255, 255, 255);
    }
}

@-o-keyframes f_fadeG {
    0% {
        background-color: rgb(0, 0, 0);
    }

    100% {
        background-color: rgb(255, 255, 255);
    }
}

@-ms-keyframes f_fadeG {
    0% {
        background-color: rgb(0, 0, 0);
    }

    100% {
        background-color: rgb(255, 255, 255);
    }
}

@-webkit-keyframes f_fadeG {
    0% {
        background-color: rgb(0, 0, 0);
    }

    100% {
        background-color: rgb(255, 255, 255);
    }
}

@-moz-keyframes f_fadeG {
    0% {
        background-color: rgb(0, 0, 0);
    }

    100% {
        background-color: rgb(255, 255, 255);
    }
}

@-webkit-keyframes zoomInLocation {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50%) translateX(-50%) scale3d(.3, .3, .3);
        transform: translateY(-50%) translateX(-50%) scale3d(.3, .3, .3);
        -moz-transform: translateY(-50%) translateX(-50%) scale3d(.3, .3, .3);
        -o-transform: translateY(-50%) translateX(-50%) scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomInLocation {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50%) translateX(-50%) scale3d(.3, .3, .3);
        transform: translateY(-50%) translateX(-50%) scale3d(.3, .3, .3);
        -moz-transform: translateY(-50%) translateX(-50%) scale3d(.3, .3, .3);
        -o-transform: translateY(-50%) translateX(-50%) scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}*/
