﻿.countrys {
    width: 250px;
    height: 736px;
    position: absolute;
    overflow: auto;
    top: 47px;
    right: 16px;
    z-index: 100001;
    background-color: #fff;
    padding: 8px 12px 8px 12px;
    border-radius: 15px;
}

.pointer{
    cursor:pointer;
}

.citys {
    width: 250px;
    height: 30px;
    position: absolute;
    overflow: auto;
    top: 5px;
    right: 5px;
    z-index: 1;
    background-color: #fff;
    padding: 0;
}

.font-small {
    font-size: small!important;
}

.font-medium{
    font-size:medium!important;
}

.fw-600 {
    font-weight: 600!important;
}

.fadeIn {
    animation: fadeIn 0.3s ease-in both;
}

.card-hov:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.br-15{
    border-radius:15px!important;
}

.polo-Border {
    width: 100%;
    height: 14px;
    background: url(../img/stripbg.jpg) repeat-x;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, -20%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.in-down {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}



