.italic {
    font-family: 'barlow_italic', 'Helvetica Neue', 'Helvetica', "Arial";
}

.medium {
    font-family: 'barlow_medium', 'Helvetica Neue', 'Helvetica', "Arial";
}


.regular {
    font-family: 'barlow_regular', 'Helvetica Neue', 'Helvetica', "Arial";
}

.bold {
    font-family: 'barlow_bold', 'Helvetica Neue', 'Helvetica', "Arial";
}






.italic1 {
    font-family: 'GT-America-Regular-Italic', 'Helvetica Neue', 'Helvetica', "Arial";
}


.medium1 {
    font-family: 'GTAmerica_medium', 'Helvetica Neue', 'Helvetica', "Arial";
}


.regular1 {
    font-family: 'GTAmerica_regular', 'Helvetica Neue', 'Helvetica', "Arial";
}

.bold1 {
    font-family: 'GT-America-Bold', 'Helvetica Neue', 'Helvetica', "Arial";
}



/* animation */
.shake {
    animation: shake 0.5s;

}

@keyframes shake {
    0% {
        transform: translate(1px, 0px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, 0px);
    }

    20% {
        transform: translate(-3px, 0px);
    }

    30% {
        transform: translate(3px, 0px);
    }

    40% {
        transform: translate(1px, 0px);
    }

    50% {
        transform: translate(-1px, 0px);
    }

    60% {
        transform: translate(-3px, 0px);
    }

    70% {
        transform: translate(3px, 0px);
    }

    80% {
        transform: translate(-1px, 0px);
    }

    90% {
        transform: translate(1px, 0px);
    }

    100% {
        transform: translate(1px, 0px);
    }
}


/* general */
#overlay_bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
}

/* no scrollbar */
.no_scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no_scrollbar::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

/* pointer on hover control */

.pointer:hover {
    cursor: pointer;
}

.hidden {
    display: none;
}

/* font sizes */
.f14 {
    font-size: 14px;
}

.f12 {
    font-size: 12px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

.f20 {
    font-size: 20px;
}

.f28 {
    font-size: 28px;
}

/* colors */
.confirmed {
    color: #56ab00;
}

.pending {
    color: #f05014;
}


/* opacity */
.op4 {
    opacity: 0.4;
}

.op6 {
    opacity: 0.6;
}

.op8 {
    opacity: 0.8;
}

/* margins */
.mtauto {
    margin-top: auto !important;
}

.mt0 {
    margin-top: 0px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 40px;
}

.mt40 {
    margin-top: 40px;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}


.mr5 {
    margin-right: 5px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr15 {
    margin-right: 15px !important;
}




/* embed videos */
.video_holder {
    position: relative;
    width: 100%;
    height: 100%;
}


.embed_holder {
    width: 100%;
    height: 100%;

    display: inline-block;

    position: relative;
    overflow: hidden;
}

.duration {
    min-width: 50px;
    display: inline-block;
    color: white;
    margin-right: 10px;
    text-shadow: 1px 1px 5px #000000a6;
}

video.vimeo_video {
    display: block;
}

.video_buttons_holder {
    position: absolute;
    z-index: 1;
    margin: 10px 0px 5px;
    right: 0px;
    top: 0px;
}

.video_play,
.video_pause,
.video_mute,
.video_unmute {
    display: inline-block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    margin-right: 10px;
    background: white;
    border-radius: 100px;
    border: 1px solid #969696;
}

.video_big_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15%;
    height: unset;
    /* max-width: 100px; */
    background: transparent;
    border-radius: 100px;
    z-index: 1;
    object-fit: contain;
    border: 0;
}


.embed_vid_controls_container {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: inline-block;
}

.vid_control_btn {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 18px;
    /* background: white; */
    /* box-shadow: 0px 0 10px 2px #00000078; */
    margin: 0px 15px -4px 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.vid_control_btn:before {
    content: ' ';
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0px, -50%);
    box-shadow: 0px 0 10px 2px #00000078;
    background: white;
}

.vid_control_btn:after {
    content: ' ';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: rotate(45deg) translate(-3px, -40%);
    border: 2px solid white;
    border-width: 2px 2px 0 0;
    box-sizing: border-box;
}

.vid_control_back:after {
    right: unset;
    left: 0;
    border-width: 0 0 2px 2px;
}


/* icons */

.black_circle {
    min-width: 20px;
    min-height: 20px;
    background: black;
    border-radius: 100px;
    display: inline-block;
}



.arrow_down,
.arrow_up,
.arrow_left {
    margin-left: 20px;
    margin-bottom: 2px;
    display: inline-block;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-bottom: 2px solid #1a1a1a;
    border-left: 2px solid #1a1a1a;
}

.arrow_left {
    margin: 0 16px 0px 4px;
    transform: rotate(45deg);
}

.arrow_down {
    transform: rotate(-45deg);
}

.arrow_down.active {
    transform: rotate(134deg) translate(5px, -5px);
}

.arrow_up {
    transform: rotate(134deg) translate(5px, -5px);
}

.arrow_up.active {
    transform: rotate(-45deg);
}

.round_arrow {
    margin-left: 20px;
    margin-bottom: 2px;
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 20px;
    background-color: #1a1a1a;
}

.round_arrow.grey_icon {
    background-color: #b4b4b4;
}

.round_arrow.black_icon {
    background-color: #000;
}

.round_arrow:after {
    content: '';
    margin: 5px 0px 0px 6px;
    display: block;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(-45deg);
}

.round_arrow_down.active,
.round_arrow_up.active {
    transform: rotate(180deg);
}

.diag_arrow {
    display: inline-block;
    margin-right: 10px;
    width: 12px;
    height: 12px;
    color: black;
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: relative;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;

    overflow: hidden;
}

.diag_arrow.white {
    color: white;
}

.diag_arrow.active {
    transform: rotate(-90deg);
}

.diag_arrow:after {
    content: '';
    height: 2px;
    width: 150%;
    background-color: black;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);

    background-color: rgb(228, 83, 61);
}

#map_section_container .diag_arrow:after {
    /* background-color: rgb(228, 83, 61); */
}

.diag_arrow.white:after {
    background-color: white;
}



.flag {
    background: #1a1a1a;
    color: white;
    padding: 2px 5px;
    font-size: 14px;
    border-radius: 2px;
}

.slice_sep {
    margin: 0 4px;
}

/* edit */
.edit_icon {
    margin-right: 15px;
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 20px;
    background-color: #1a1a1a;
    vertical-align: middle;
}

.edit_icon:after {
    content: '';
    display: block;
    width: 0;
    height: 10px;
    margin: 4px 0px 0px 9px;
    border: 1px solid white;
    border-radius: 0 0 1px 1px / 0 0 50% 50%;
    transform: rotate(45deg);
}

/* info/detail */
.info_icon {
    margin-right: 15px;
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 20px;
    background-color: #1a1a1a;
    vertical-align: middle;
}

.info_icon:after {
    content: 'i';
    display: block;
    width: 0;
    height: 10px;
    margin: -1px 0px 0px 0px;
    color: white;
    text-align: center;
    font-size: 16px;
    width: 100%;

}

.x_icon {
    background: url(../img/x.png) no-repeat center;
    width: 12px;
    height: 12px;
    display: inline-block;
    background-size: contain;
}

/* add */
.add_icon {
    margin-right: 15px;
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 20px;
    background-color: #1a1a1a;
}

.add_icon:after {
    content: '+';
    color: white;
    font-size: 22px;
    display: block;
    width: 0;
    margin: -5px 0px 0px 5px;
    font-family: "barlow_semibold", "Helvetica Neue";
}

.check_icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 20px;
    box-sizing: border-box;
    border: 1px solid #1a1a1a;
    box-sizing: border-box;
    border: 1px solid #1a1a1a;
    box-shadow: inset 0 0 0 2px white;
}

.check_icon.active {
    background-color: #1a1a1a;
}


.scroll_icon {
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
    border-radius: 20px;
    box-sizing: border-box;
    background: #1a1a1a;
    box-sizing: border-box;
}

.scroll_icon_right {
    transform: rotate(180deg)
}

.scroll_icon:before,
.scroll_icon:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 5px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    transform: rotate(45deg)
}

.scroll_icon:after {
    content: '';
    left: 10px;
}

/* close btn */
.close_btn {
    width: 40px;
    height: 50px;

    position: fixed;
    top: 30px;
    right: 20px;
    background: transparent;
    margin-left: 10px;
    cursor: pointer;
    z-index: 14;
    display: none;
}

.overlay_hr {
    transition: all ease-out 0.5s;
    width: 100%;
    border: none;
    border-radius: 3px;
    position: absolute;
    background-color: rgb(228, 83, 61);
    /* background: #1a1a1a;
    background-image: linear-gradient(90deg, #ff2da1 20%, #ff0023 80%); */
    top: 30%;
    height: 2px;
}

.close_btn #overlay_hr1 {
    transform: rotate(45deg);
}

.close_btn #overlay_hr2 {
    transform: rotate(-45deg);
}