html{
  background: url("../images/home-bg.jpg") no-repeat center center fixed;
   -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 100%;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
.wrapper{
    width: 100%;
    margin: 0 auto;
}
.shyPopup{
    width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    text-align: center;
    padding: 40px 15px;
}
.hidden{
    display: none;
}
.shyPopup p{
    color: #171717;
    font-size: 16px;
    margin-bottom: 40px;
   
}
.shyPopup .shylogo{
    max-width: 200px;
}
.shyPopup h3{
    font-size: 20px;
    color: #464646;
    font-weight: 300;
    position: relative;
    margin-top: 40px;
    padding-top: 20px;
}
.shyPopup h3:before{
    content: "";
    position: absolute;
    width: 100px;
    height: 1px;
    background: #c3c3c3;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -10px;
}
.selCountry > *{
    display: inline-block;
    vertical-align: middle;
}
.goBtn{
    font-weight: 600;
    color: #fff;
    background: #525252;
    font-size: 16px;
    height: 30px;
    border-radius: 10px;
    text-decoration: none;
    padding: 7px 20px;
    margin-left: 10px;
    line-height: 30px;
    transition: all 0.3s ease 0s;
}
.goBtn:hover{
    background: #272727;
}
img{
    max-width: 100%;
}
.shyPopupFoter {
    position: relative;
    padding-top: 35px;
    margin-top: 50px;

}
.shyPopupFoter:before{
    content: "";
    position: absolute;
    width: 100px;
    height: 1px;
    background: #c3c3c3;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -10px; 
}
.shyPopupFoter img {
    max-width: 35%;
}
.main-sel-lang {
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}
.sel-lang {
    border-radius: 10px;
    color: #464646;
    padding: 6px 6px 6px 15px;
    width: 250px;
    border: 1px solid #b9b9b9;
    position: relative;
    z-index: 1;
    font-size: 16px;
    height: 30px;
    margin: 0 auto;
    text-align: left;
    line-height: 30px;
}
.sel-lang:after{
    content: "";
    position: absolute;
    right: 15px;
    background: url(../images/down-arrow.png)no-repeat;
    background-position: center right;
    background-position: 93% 50%;
    background-size: 10px;
    width: 10px;
    height: 10px;
    top: 17px;
    transition: all 0.3s ease 0s;
}
.sel-lang.open:after{
    transform: scaleY(-1);
}
.sel-lang a{
    color: #464646;
    text-decoration: none;  
}
.sel-lang a i{
    margin-top: 1px;
}
.all-county-list {
    display: none;
    height: 170px;
    overflow-y: scroll;
    position: absolute;
    background: #fff;
    bottom: 44px;
    width: 260px;
    border-top: 1px solid #8d8683;
    border-left: 1px solid #8d8683;
    border-right: 1px solid #8d8683;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    list-style-type: none;
    padding: 0;
    z-index: 1;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: left;
}
.all-county-list li a {
    padding: 6px 6px 6px 7px;
    transition: all .3s ease 0s;
    display: block;
    color: #464646;
   text-decoration: none;
   font-size: 16px;
}
.all-county-list li:hover a{
    background: #f2f2f2;
} 
.all-county-list::-webkit-scrollbar{width:5px;background:rgba(86,83,83,.5);border-radius:5px}.all-county-list::-webkit-scrollbar-thumb{border-radius:5px;background:#009ac8}

.sprite {
    background-image: url(../images/spritesheet.png);
    background-repeat: no-repeat;
    display: block;
    background-size:110px;
    width: 25px;
    height: 25px;
    float: left;
    margin-right: 10px; 
}
.sprite-flag-br {
   background-position: 0 0;
}
.sprite-flag-de {
    background-position: -29px 0;
}
.sprite-flag-dk {
    background-position: -54px 0;
}

.sprite-flag-es {
    background-position: 0 -29px;
}

.sprite-flag-fi {
    background-position: -27px -29px;
}

.sprite-flag-fr {
    background-position: -57px -29px;
}

.sprite-flag-it {
    background-position: 0 -57px;
}

.sprite-flag-nl {
   background-position: -29px -57px;
}

.sprite-flag-no {
    background-position: -54px -57px;
}

.sprite-flag-pt {
    background-position: -82px 0;
}

.sprite-flag-se {
    background-position: -82px -29px;
}

.sprite-flag-uk {
    background-position: -85px -55px;
}
@media screen and (max-width:800px){
    .shyPopup{
        width: 90%;
    }
}
@media screen and (max-width:767px){
   .shyPopup{
        padding: 30px 15px;
    }
    .shyPopup p{
        font-size: 14px;
        margin-bottom: 20px;
    }
    .shyPopup h3{
        margin-top: 20px;
        padding-top: 0px;
    }
    .shyPopupFoter{
        padding-top: 15px;
        margin-top: 30px;
    }
}
@media only screen and (min-device-width: 480px) 
                   and (max-device-width: 667px) 
                   and (orientation: landscape) {
	.shyPopup{ top: 10%;transform: translateY(0);}
	
}
@media screen and (max-width:481px){
	html{
		background-attachment: initial !important;
	}
}
@media screen and (max-width:400px){
    .shyPopup {
        width: 80%;
    }
    .shyPopup h3{
        font-size: 18px;
    }
    .sel-lang{
        width: 190px;
    }
    .all-county-list{
        width: 202px;
        bottom: 45px;
    }
    .goBtn{
        margin-left: 5px;
    }
    .shyPopupFoter img{
        max-width: 70%;
    }
}
@media screen and (max-width:370px){
    .shyPopup{
        padding: 15px;
    }
    .selCountry > *{display: block;}
    .sel-lang {width: auto;}
    .goBtn{margin: 10px 0 0 0;}
    .all-county-list{width: 97%;}
}