a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
*,*:before,*:after{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* FONTS */
@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Bold.eot');
    src: url('fonts/WorkSans-Bold.eot?#iefix') format('embedded-opentype'),
    url('fonts/WorkSans-Bold.woff2') format('woff2'),
    url('fonts/WorkSans-Bold.woff') format('woff'),
    url('fonts/WorkSans-Bold.ttf') format('truetype'),
    url('fonts/WorkSans-Bold.svg#WorkSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}



@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Medium.eot');
    src: url('fonts/WorkSans-Medium.eot?#iefix') format('embedded-opentype'),
    url('fonts/WorkSans-Medium.woff2') format('woff2'),
    url('fonts/WorkSans-Medium.woff') format('woff'),
    url('fonts/WorkSans-Medium.ttf') format('truetype'),
    url('fonts/WorkSans-Medium.svg#WorkSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}


@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Regular.eot');
    src: url('fonts/WorkSans-Regular.eot?#iefix') format('embedded-opentype'),
    url('fonts/WorkSans-Regular.woff2') format('woff2'),
    url('fonts/WorkSans-Regular.woff') format('woff'),
    url('fonts/WorkSans-Regular.ttf') format('truetype'),
    url('fonts/WorkSans-Regular.svg#WorkSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}



/* CSS GENERAL */
html, html a {
    -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}
html, body{
    height: 100%;
    min-height: 100%
}
body{
    background: #000;
    color: #fff;
    font-family: 'Work Sans', 'Arial', 'Helvetica', sans-serif;
    font-size: 14px;
}
a{
    color: #FFF;
    text-decoration: none;
}

p{
    /*margin-bottom: 10px;*/
}


.background{
    opacity: 0;
    background: #000 no-repeat 50% 50%;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 1s all;
    -o-transition: 1s all;
    transition: 1s all;
}
.background.sm {
    z-index: 1;
    filter: blur(50px);
    /* this is needed so Safari keeps sharp edges */
    transform: scale(1);
}
.background.lg {
    z-index: 2;
    background-color: transparent;
}
.background.show {
    opacity: 1;
}
.top-left-corner,
.top-right-corner,
.bottom-left-corner,
.bottom-right-corner{
    position: fixed;
    z-index: 10;
}
.top-left-corner,
.top-right-corner{
    top: 40px;
}

.bottom-left-corner,
.bottom-right-corner{
    bottom: 40px;
}
.top-left-corner,
.bottom-left-corner{
    left: 40px;
}

.top-right-corner,
.bottom-right-corner{
    right: 40px;
}

/* ELEMENTS */
.main-logo{
    display: inline-block;
    margin-top: 4px;
}
.main-logo>img{
    width: 118px;
}
.main-logo img{
    transition: .3s ease-out;
}
.main-logo img:hover{
    opacity:.9;
}
.placename {
    font-size: 18px;
    line-height: 1.65;
    text-align: left;
    color: #ffffff;
    font-weight:bold;
    display: inline-block;
    transition: .3s ease-out;
}
.placename:hover {
    opacity:0.8;
}
.place {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    color: #ffffff;
    transition: .3s ease-out;
}
.place:hover {
    opacity:0.8;
}
.flag{
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    overflow: hidden;
}
.flag_img{
    width: 100%;
    height: 100%;
    display: block;
}
.author{
    opacity: 0.6;
    font-size: 14px;
    line-height: 24px;
    text-align: right;
    color: #ffffff;
    transition: .3s ease-out;
}
.author:hover {
    opacity:1;
}
.author img{
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    /*margin-top: -1px;*/
}
.bg-overlay{
    position: fixed;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 168px;
    opacity: 0.4;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
}
.data-place, .data-author {
    vertical-align: middle;
}
/* INLINE NAV */

.inline-menu{
    display: block;
    margin-left: 4px;
}
.inline-menu li{
    float: left;
    margin-left: 8px;
}  
.share-hover{
    position: relative;
}
.share-popin-outside{
    position: absolute;
    left: 50%;
    bottom: 100%;
    padding-bottom: 20px;
    transform: translateX(-50%);
    display: none;
}
.share-hover:hover .share-popin-outside{
    display: block;
}
.share-popin{
    background: rgba(2,2,2,.9);
    padding: 20px;
    position: relative;
}
.share-hover:hover .share-popin-outside .share-popin{
    animation-name: fadeInUp; 
    animation-duration: .4s; 
    animation-fill-mode: both; 
    animation-timing-function: ease-out; 
}
@keyframes fadeInUp { 
    0% { 
        opacity: 0; 
        transform: translateY(10px); 
    } 
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
} 
.share-popin:before{
    content:"";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 8px 8px;
    border-color:  rgba(2,2,2,.9) transparent transparent transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,0%);
}
.share-popin ul li{
    white-space: nowrap;
    float: none;
    display: block;
    margin-left: 0;
    font-size: 12px;
}
.share-popin ul li+li{
    margin-top: 16px;
}
.share-popin ul li img{
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;
}
.share-popin ul li b{
    display: inline-block;
    vertical-align: middle;
}
/* NAV ASIDE */
.btn {
    border-radius: 45px;
    padding: 10px;
    height: 32px;
    display: inline-block;
    background: rgba(2,2,2,.3);
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:.3s ease-out;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}
.btn:hover {
    background: rgba(2,2,2,1);
}
.btn-round{
    border-radius: 100%;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
}
.btn img{
    vertical-align: middle;
}
.btn b{
    margin-left: 5px;
    display: inline-block;
}
.container-icon-like{
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
}
.container-icon-like .icon-liked{
    display: none;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.isLiked .container-icon-like .icon-liked{
    display: block;
}
.isLiked .container-icon-like .icon-like{
    display: none;
}
.overlay {
    position: fixed;
    z-index: 98;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    display: none;
}
/* POPIN */
.popin {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    z-index: 99;
    width: 780px;
    background: #fff;
    color: #000;
    transform:translate(-50%,-50%);
    transform-origin : 50% 50%;
    display: none;
    opacity: 0;
    padding-left: 280px;
}
.popin .close-popin{
    position: absolute;
    right: 0;
    top: -60px;
    opacity: 0;
    transition: none;
}
.popin .container{
    display: table;
    height: 100%;
}
.popin .rightside,
.popin .leftside{
    background: #ccc;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
    width: 280px;
    position: absolute;
    left: 0;
    top: 0;
}
.popin .aside_img {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top:0;
    display: block;
    object-fit: cover;
}
.popin .content{
    padding:70px 60px;
    display: table-cell;
    vertical-align: middle;
}
.popin .content .step{
    display: none;
}
.popin .content .step-1{
    display: block;
}
.content h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
}
.content p {
    font-size: 16px;
    line-height: 1.5;
    color: #020202;
    margin-bottom: 10px;
}
.content .invit-form{
    display: flex;
    justify-content: space-between;
}
.content .invit-form input{
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    color: #000;
    border: 1px #b2b2b2 solid;
    padding: 10px;
    height: 42px;
    line-height: 42px;
    transition:.2s ease-out;
    margin:0;
    display: inline-block;
    vertical-align: middle;
}
.content .invit-form input([value=""]){
    color: #b2b2b2;
    border-color:#b2b2b2; 
}
.content .invit-form input:focus{
    outline: none;
    border-color:#000; 
    color: #000;
}
.content .invit-form input[type=email]{
    width: 100%;
    font-size: 14px;
    font-family: 'Work Sans';
}
.content .invit-form input[type=submit]{
    background: #000;
    display: inline-block;
    height: 42px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.33;
    padding: 10px 20px;
    border: 0;
    text-transform: uppercase;
    cursor: pointer;
}
.content .error-form {
    display: none;
    font-size: 14px;
    line-height: 1.5;
    color: #a4a4a4;
    margin-top: 10px;
    clear: both;
}
.content .opactext {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #a4a4a4;
    text-transform: uppercase;
}
.popin .content .step-2 h2 {
    margin-bottom: 16px !important;
}
.popin .content .step-2 .opactext {
    margin-bottom: 8px;
 }   
.tweet-message p{
    border-radius: 45px 45px 0px 45px;
    padding:20px 40px;
    background: rgba(243,243,243,.8);
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    color: #020202;
    margin-bottom: 20px;
}
.tweet-message a{
    font-size: 12px;
    font-weight: bold;
    line-height: 1.33;
    text-align: left;
    color: #00aaec;
    text-transform: uppercase;
    float: right;
}
.tweet-message a img{
    height: 14px;
    margin-right:5px;
    vertical-align: middle;
}
/* Tooltips */
.tooltip-img{
    display: inline-block;
    background:rgba(0,0,0,.9);
    color:#fff;
    text-transform: uppercase;
    padding: 6px 10px;
    font-size: 10px;
    line-height: 1.65;
    font-weight: bold;
    white-space: nowrap;
    transition: .3s ease-out;
    position: absolute;
    letter-spacing: 0.8px;
    opacity: 0;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    pointer-events: none;
    top:50%; 
    margin-left: 7px;
    left:100%;
    -webkit-transform:translate(20px, -50%);
    transform:translate(20px, -50%);
}
.tooltip-img img{
    vertical-align: sub;
    width:12px;
    margin-left: 6px;
}
.tooltip-img i {
    opacity: .7;
}
.tooltip-img:before{
    content:"";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute; 
    transition: .3s ease-out;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    pointer-events: none;
    left: 0%;
    top: 50%;
    margin-left: 1px;
    -webkit-transform:translate(-100%,-50%);
    transform:translate(-100%,-50%);
    border-width: 6px 7px 6px 0;
    border-color: transparent rgba(0,0,0,.9) transparent transparent;
}
*[tooltip]:hover .tooltip-img{ -webkit-transform:translate(10px, -50%);    transform:translate(10px, -50%); opacity: 1 }

*[tooltip]{
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
*[tooltip]:before{
    content:"";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    opacity: 0; 
    transition: .3s ease-out;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    pointer-events: none;
}
*[tooltip]:after{
    content: attr(tooltip-text);
    display: inline-block;
    background:rgba(0,0,0,.9);
    color:#fff;
    text-transform: uppercase;
    padding: 5px 9px;
    /*border-radius: 3px;*/
    font-size: 10px;
    line-height: 1.65;
    font-weight: bold;
    white-space: nowrap;
    transition: .3s ease-out;
    position: absolute;
    letter-spacing: 0.8px;
    opacity: 0;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    pointer-events: none;
}

*[tooltip-direction="top"]:after { bottom:100%; margin-bottom: 7px; left:50%; -webkit-transform:translate(-50%, -20px); transform:translate(-50%, -20px); }
*[tooltip-direction="bottom"]:after{ top:100%; margin-top: 7px; left:50%; -webkit-transform:translate(-50%, 20px); transform:translate(-50%, 20px); }

*[tooltip-direction="left"]:after{ top:50%; margin-right: 7px; right:100%; -webkit-transform:translate(-20px, -50%); transform:translate(-20px, -50%); }
*[tooltip-direction="right"]:after{ top:50%; margin-left: 7px; left:100%; -webkit-transform:translate(20px, -50%); transform:translate(20px, -50%); }

*[tooltip-direction="top"]:before{
    left: 50%;
    bottom: 100%;
    margin-bottom: 1px;
    -webkit-transform:translate(-50%,0);
    transform:translate(-50%,0);
    border-width: 7px 8px 0 8px;
    border-color: rgba(0,0,0,.9) transparent transparent  transparent;
    -webkit-transform:translate(-50%, -20px); transform:translate(-50%, -20px);
}
*[tooltip-direction="bottom"]:before{
    left: 50%;
    top: 100%;
    margin-top: 1px;
    -webkit-transform:translate(-50%,0);
    transform:translate(-50%,0);
    border-width: 0 8px 7px 8px;
    border-color: transparent transparent rgba(0,0,0,.9) transparent;
    -webkit-transform:translate(-50%, 20px); transform:translate(-50%, 20px);
}
*[tooltip-direction="left"]:before{
    right: 100%;
    top: 50%;
    margin-right: 1px;
    -webkit-transform:translate(0,-50%);
    transform:translate(0,-50%);
    border-width: 6px 0 6px 7px;
    border-color: transparent transparent transparent rgba(0,0,0,.9);
    -webkit-transform:translate(-20px, -50%); transform:translate(-20px, -50%);
}
*[tooltip-direction="right"]:before{
    left: 100%;
    top: 50%;
    margin-left: 1px;
    -webkit-transform:translate(0,-50%);
    transform:translate(0,-50%);
    border-width: 6px 7px 6px 0;
    border-color: transparent rgba(0,0,0,.9) transparent transparent;
    -webkit-transform:translate(20px, -50%); transform:translate(20px, -50%);
}

*[tooltip-direction="top"]:hover:before,
*[tooltip-direction="top"]:hover:after{ -webkit-transform:translate(-50%, -10px);    transform:translate(-50%, -10px); opacity: 1 }
*[tooltip-direction="bottom"]:hover:before,
*[tooltip-direction="bottom"]:hover:after{ -webkit-transform:translate(-50%, 10px);    transform:translate(-50%, 10px); opacity: 1 }

*[tooltip-direction="left"]:hover:before,
*[tooltip-direction="left"]:hover:after{ -webkit-transform:translate(-10px, -50%);    transform:translate(-10px, -50%); opacity: 1 }
*[tooltip-direction="right"]:hover:before,
*[tooltip-direction="right"]:hover:after{ -webkit-transform:translate(10px, -50%);    transform:translate(10px, -50%); opacity: 1 }

/* FULL-OVERLAY */
.full-overlay{
    z-index: 100;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 17.5%;
    display: table;
    background-color: #F7F7F7;
}
.full-overlay img{
    position: absolute;
    top: 40px;
    left: 40px;
}
.full-content{
    position: relative;
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.full-content p{
    color: #808080;
    text-align: center;
    font-size: 22px;
    line-height: 39px;
    margin-top: 40px;
}
.full-content strong{
    color: #020202;
    font-size: 24px;
}
.fake{
    width: 140px;
    height: 140px;
    border-radius: 180px;
    background-color: #fff;
    display: table;
    margin: 0 auto;
}
.fake .artboard{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.fake .triangle1,
.fake .triangle2{
    display: inline-block;
    vertical-align: bottom;
}
.fake .triangle1{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 28px 45px 28px;
    -webkit-transform:rotate(360deg);
    border-color: transparent transparent #ccc transparent;
}
.fake .triangle2{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 25px 15px;
    -webkit-transform:rotate(360deg);
    border-color: transparent transparent #ccc transparent;
    margin-left: -18px;
}
.fake .circle{
    width: 14px;
    height: 14px;
    display: inline-block;
    background-color: #ccc;
    border-radius: 50px;
    margin: 0 0 -6px 26px;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.fake:hover .circle{
    width: 14px;
    height: 14px;
    display: inline-block;
    margin: 0 0 -46px 26px;
}


/* PLACE INFO */
.place-info p,
.place-info ul{
    display: inline-block;
    vertical-align: middle;
}
.place-info .btn b {
    font-size: 10px;
    font-size: 600;
}

.place-info .container-icon-like {
    width: 13px;
    height: 12px;
    display: flex;
}

/* RANDOM / NEXT */

.random-place {
    position: fixed;
    z-index: 90;
    right: 60px;
    top: 50%;
    transform: translate(0,-50%);
    cursor: pointer;
    
}
.random-place img {
    transition: .3s ease-out;
    opacity: .7;
}
.random-place:hover img{
    opacity: 1
}

/* MENU */
.menu{
    position: relative;
}
.menu .inline-menu{
    position: absolute;
    z-index: 90;
    right: 0;
    top: 0;
    background: rgba(0,0,0,1);
    width: 230px;
    padding: 20px;
    opacity: 0;
    transform: scale(.7);
    transform-origin: 100% 0;
    transition: .2s ease-out;

}
.menu .inline-menu:hover{
    opacity: 1;
    transform: scale(1);
}
.menu .inline-menu hr {
    margin: 20px 0 18px;
    background: white;
    width: 100%;
    height: 1px;
    display: block;
    border: 0;
    opacity: .2;
}
.menu .inline-menu li{
    margin-left: 0;
    white-space: nowrap;
    display: block;
    float: none;
} 
.menu .inline-menu li a{
    display: block;
}
.menu .inline-menu li a:hover{
    opacity: .8
}
.menu .inline-menu li figure {
    width: 20px;
    text-align: center;
    margin-right:10px;
    vertical-align: middle;
    display: inline-block;
}
.menu .inline-menu li img {
    vertical-align: middle;
    display: inline-block;
} 
.menu .inline-menu li b {
    vertical-align: middle;
    display: inline-block;
}
.menu .inline-menu li+li {
    margin-top: 22px;
}
