/**
 * @fileoverview Handles Global Styles for JustinMJimenez.com
 * @module public/css/justin.global
 * @author Justin Jimenez <justin@justinmjimenez.com> 🍵
 * @copyright ©️2018 Justin Jimenez. All Rights Reserved.
 * @version 1.4.0
 */


@import url('https://fonts.googleapis.com/css?family=Barlow+Condensed|Questrial');


/*  RESETS  */

article, header, footer, div, section, span, label,
audio, video, canvas, form, main, em, b, p, i, a,
h1, h2, h3, h4, h5, h6, input, meter, ul, li, dt,
aside, address, html, body, dd, dl, figcaption, q,
figure, fieldset, legend, img, nav, select, option,
ol, small, strong, sub, sup, textarea, time, button {
    margin: 0;
    padding: 0;
}


/*  END: RESETS  */


/*  UTILITIES  */

.bold { font-weight: bold; }

.no_display { display: none; }

.float_left { float: left; }

.float_right { float: right; }

.clear_left { clear: left; }

.clear_right { clear: right; }

.full_width { width: 100%; }

.half_width {width: 50%; }

.full_height { height: 100%; }

.half_height { height: 50%; }

.third_height { height: 33%; }

.width_40 { width: 40%; }

.width_45 { width: 45%; }

.half_container {
    width: 50%;
    height: 100%;
}

.third_container {
    width: 33.33%;
    height: 100%;
}

.two_thirds_container {
    width: 66.66%;
    height: 100%;
}

.quarter_container {
    width: 25%;
    height: 100%;
}

.fifth_container {
    width: 20%;
    height: 100%;
}

.three_quarter_container {
    width: 75%;
    height: 100%;
}

.half_height_row {
	width: 100%;
	height: 50%;
	background: pink;
	display: inline-block;
}

.center {
    margin: 0 auto;
}

.overflow { overflow-y: scroll; }

.no_select {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.loading_container {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: rgba(0,0,0,0.8);
}

.loading_icon {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: url('../images/icons/ui/icon_loading_white.svg') no-repeat;
    background-size: 200px 200px;
    background-position: center;
    -webkit-animation:spin 3s linear infinite;
    -moz-animation:spin 3s linear infinite;
    animation:spin 3s linear infinite;
}

/*  END: UTILITIES  */

/*  HEADER  */

header {
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    z-index: 2;
    position: fixed;
}

header[data-fill="blue"] {
    background: rgba(40, 60, 127, 0.30);
}

header[data-fill="solid-blue"] {
    background: rgba(40, 60, 127);
}

header[data-fill="white"] {
    background: rgba(255, 255, 255, 0.30);
}

header[data-fill="solid-white"] {
    background: #fff;
}

.logo_container {
    width: 15%;
    height: 100%;
    float: left;
    clear: left;
}

.logo {
    width: 200px;
    height: 100px;
    margin-left: 20px;
    transition-duration: .35s;
    transition-property: background;
    transition-timing-function: ease-out;
}

figure.logo.white {
    background: url(../images/logo/justin.logo-3c.svg) no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.hamburger_btn_container {
    width: 10%;
    height: 100%;
    float: right;
}

/*  END: HEADER  */

/*  MAIN  */

main {
    width: 100%;
    /*height: calc(100% - 75px);*/
    height: 100%;
}

.main_content {
    width: 100%;
    height: 100%;
    margin-top: 100px;
}

/*  FOOTER  */

footer {
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0;
    left: 0;
	/* background: url(../images/bg/footer-white.svg) no-repeat;
	background-position: center bottom;
    background-size: cover; */
    /* background: rgba(0,0,0,0.3); */
}

footer small {
	float: left;
    color: #EA6083;
    font-size: 12px;
	line-height: 50px;
	margin-left: 20px;
    display: inline-block;
    font-family: 'Questrial', sans-serif;
}

.social_media {
    width: 242px;
	height: 100%;
	float: right;
	margin-right: 20px;
}

footer .social_link,
footer .social_link:link,
footer .social_link:visited {
	width: 32px;
	height: 32px;
	float: left;
	margin-top: 9px;
	margin-left: 10px;
	text-decoration: none;
	transition-duration: .35s;
    transition-property: background;
    transition-timing-function: ease-out;
}

footer .social_link:first-child {
	clear: left;
	margin-left: 0;
	margin-right: 0;
}

footer .social_link:last-child {
	float: right;
	margin-left: 0;
	margin-right: 0;
}

.social_link.instagram_link,
.social_link.instagram_link:link,
.social_link.instagram_link:visited {
	background: url(../images/icons/social/instagram-circle-solid.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.social_link.instagram_link:hover {
	background: url(../images/icons/social/instagram-circle.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.social_link.linkedin_link,
.social_link.linkedin_link:link,
.social_link.linkedin_link:visited {
	background: url(../images/icons/social/linkedin-circle-solid.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.social_link.linkedin_link:hover {
	background: url(../images/icons/social/linkedin-circle.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.social_link.github_link,
.social_link.github_link:link,
.social_link.github_link:visited {
	background: url(../images/icons/social/github-circle-solid.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.social_link.github_link:hover {
	background: url(../images/icons/social/github-circle.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.social_link.twitch_link,
.social_link.twitch_link:link,
.social_link.twitch_link:visited {
	background: url(../images/icons/social/twitch-circle-solid.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.social_link.twitch_link:hover {
	background: url(../images/icons/social/twitch-circle.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.social_link.twitter_link,
.social_link.twitter_link:link,
.social_link.twitter_link:visited {
	background: url(../images/icons/social/twitter-circle-solid.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.social_link.twitter_link:hover {
	background: url(../images/icons/social/twitter-circle.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.social_link.facebook_link,
.social_link.facebook_link:link,
.social_link.facebook_link:visited {
	background: url(../images/icons/social/facebook-circle-solid.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

.social_link.facebook_link:hover {
	background: url(../images/icons/social/facebook-circle.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 32px;
    -moz-background-size: 32px;
    -o-background-size: 32px;
    background-size: 32px;
}

/*  END: FOOTER  */

/*  END: MAIN  */

/*  HAMUBURGER NAVIGATION  */

.hamburger_btn {
    width: 32px;
    height: 32px;
    float: right;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 34px;
	margin-right: 20px;
	transition-duration: .35s;
    transition-property: background;
    transition-timing-function: ease-out;
}

.hamburger_btn.white:hover {
	background: transparent url(../images/icons/ui/menu-hover.svg) no-repeat;
    background-size: cover;
    background-position: center;
}

.hamburger_btn.white {
    background: transparent url(../images/icons/ui/menu.svg) no-repeat;
    background-size: cover;
    background-position: center;
}

.hamburger_btn.blue {
    background: transparent url(../images/icons/ui/icon_menu-blue.svg) no-repeat;
    background-size: cover;
    background-position: center;
}

.hamburger_menu {
    width: 50%;
    height: 100%;
    min-width: 280px;
    max-width: 500px;
    top: 100px;
    right: -105%;
    z-index: 2;
	position: fixed;
	background: #EA6083;
	/* background: #000; */
    /*background: rgba(0,0,0,0.9);*/
}

.hamburger_nav a         ,
.hamburger_nav a:link    ,
.hamburger_nav a:visited {
    width: 50%;
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    text-indent: 75px;
    text-decoration: none;
    display: inline-block;
    transition-duration: .35s;
    transition-property: color, background;
    transition-timing-function: ease-out;
    font-family: 'Questrial', sans-serif;
}

.hamburger_nav a:hover {
    color: #EA6083;
}

.hamburger_nav a:nth-child(odd) {
	float: left;
	clear: left;
}

.hamburger_nav a:nth-child(even) {
	float: left;
}

.hamburger_nav a:last-child {
	width: 100%;
	float: unset;
	clear: unset;
	margin-top: 90px;
	border-top: 1px solid #fff;
}

.hamburger_nav a[data-hamburger-link="home"] {
    background: url(../images/icons/ui/home.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="home"]:hover {
    background: #fff url(../images/icons/ui/home-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="text"] {
    background: url(../images/icons/ui/text.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="text"]:hover {
    background: #fff url(../images/icons/ui/text-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="music"] {
    background: url(../images/icons/ui/music.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="music"]:hover {
    background: #fff url(../images/icons/ui/music-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="settings"] {
    background: url(../images/icons/ui/settings.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="settings"]:hover {
    background: #fff url(../images/icons/ui/settings-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="it"] {
    background: url(../images/icons/ui/laptop.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="it"]:hover {
    background: #fff url(../images/icons/ui/laptop-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="stream"] {
    background: url(../images/icons/ui/livestream.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="stream"]:hover {
    background: #fff url(../images/icons/ui/livestream-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="subscribe"] {
    background: url(../images/icons/ui/subscribe.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="subscribe"]:hover {
    background: #fff url(../images/icons/ui/subscribe-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="unsubscribe"] {
    background: url(../images/icons/ui/unsubscribe.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="unsubscribe"]:hover {
    background: #fff url(../images/icons/ui/unsubscribe-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="instagram"] {
    background: url(../images/icons/social/instagram.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="instagram"]:hover {
    background: #fff url(../images/icons/social/instagram-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="twitter"] {
    background: url(../images/icons/social/twitter.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="twitter"]:hover {
    background: #fff url(../images/icons/social/twitter-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="linkedin"] {
    background: url(../images/icons/social/linkedin.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="linkedin"]:hover {
    background: #fff url(../images/icons/social/linkedin-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}


.hamburger_nav a[data-hamburger-link="about"] {
    background: url(../images/icons/ui/about.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="about"]:hover {
    background: #fff url(../images/icons/ui/about-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="blog"] {
    background: url(../images/icons/ui/blog.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="blog"]:hover {
    background: #fff url(../images/icons/ui/blog-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="events"] {
    background: url(../images/icons/ui/calendar.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="events"]:hover {
    background: #fff url(../images/icons/ui/calendar-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="cv"] {
    background: url(../images/icons/ui/cv.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="cv"]:hover {
    background: #fff url(../images/icons/ui/cv-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="game"] {
    background: url(../images/icons/ui/game.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="game"]:hover {
    background: #fff url(../images/icons/ui/game-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="downloads"] {
    background: url(../images/icons/ui/download.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="downloads"]:hover {
    background: #fff url(../images/icons/ui/download-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="contact"] {
    background: url(../images/icons/ui/contact.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="contact"]:hover {
    background: #fff url(../images/icons/ui/contact-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="photos"] {
    background: url(../images/icons/ui/photo.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="photos"]:hover {
    background: #fff url(../images/icons/ui/photo-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="videos"] {
    background: url(../images/icons/ui/video.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="videos"]:hover {
    background: #fff url(../images/icons/ui/video-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="sitemap"] {
    background: url(../images/icons/ui/sitemap.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="sitemap"]:hover {
    background: #fff url(../images/icons/ui/sitemap-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="legal"] {
    background: url(../images/icons/ui/legal.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

.hamburger_nav a[data-hamburger-link="legal"]:hover {
    background: #fff url(../images/icons/ui/legal-hover.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 25px center;
}

/*  END: HAMBURGER NAVIGATION  */

/*  RTM  */

#rtm-wrapper {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 999999;
    overflow-y: scroll;
    padding-bottom: 50px;
    background: rgba(0,0,0,0.9);
    -webkit-overflow-scrolling: touch;
}

.rtm_header {
    width: calc(100% - 40px);
    height: 100px;
    margin: 0 auto;
}

.rtm_header img {
    width: 60px;
    height: 60px;
    float: left;
    clear: left;
    margin-top: 20px;
    margin-right: 20px;
}

.rtm_header h3 {
    color: #fff;
    font-size: 32px;
    line-height: 100px;
    display: inline-block;
    font-family: 'Questrial', sans-serif;
}

.rtm_header button {
    width: 35px;
    height: 35px;
    float: right;
    outline: none;
    cursor: pointer;
    border-radius: 90px;
    -moz-border-radius: 90px;
    -webkit-border-radius: 90px;
    margin-top: calc(65px / 2);
    background: url(../images/icons/ui/close-white.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 18px;
    -moz-background-size: 18px;
    -o-background-size: 18px;
    background-size: 18px;
    transition-duration: .35s;
    transition-property: background;
    transition-timing-function: ease-out;
}

.rtm_header button:hover {
    background: #fff url(../images/icons/ui/close.svg) no-repeat;
    background-position: center;
    -webkit-background-size: 18px;
    -moz-background-size: 18px;
    -o-background-size: 18px;
    background-size: 18px;
}

.rtm_post_wrapper {
    width: calc(65% - 20px);
    height: auto;
    float: right;
    margin-top: 50px;
    margin-right: 20px;
}

.rtm_post_wrapper.visitor {
    float: left;
    margin-left: 20px;
    margin-right: unset;
}

.rtm_post_wrapper:last-child {
    margin-bottom: 120px;
}

.rtm_post_wrapper time {
    width: 100%;
    height: 50px;
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 50px;
    text-indent: 20px;
    font-family: 'Barlow Condensed', sans-serif;
}

.rtm_msg_wrapper {
    width: calc(100% - 35px);
    height: calc(100% - 50px);
    color: #fff;
    float: left;
    clear: left;
    background: #59ABF7;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    font-family: 'Barlow Condensed', sans-serif;
}

.rtm_msg_wrapper h4 {
    width: 100%;
    height: 35px;
    font-size: 20px;
    font-weight: 900;
    line-height: 35px;
    text-indent: 20px;
    margin-top: 20px;
    text-decoration: underline;
    font-family: 'Barlow Condensed', sans-serif;
}

.rtm_msg_wrapper p {
    padding: 20px;
    font-size: 20px;
    font-family: 'Barlow Condensed', sans-serif;
}

.rtm_arrow_wrapper {
    width: 35px;
    height: 35px;
    display: block;
    float: right;
    margin-top: 50px;
    background: url(../images/icons/ui/right_triangle.svg) no-repeat;
    background-position: -5px center;
    -webkit-background-size: 24px;
    -moz-background-size: 24px;
    -o-background-size: 24px;
    background-size: 24px;
}

.rtm_arrow_wrapper.visitor {
    float: left;
    clear: left;
    margin-top: 15px;
    background: url(../images/icons/ui/left_triangle.svg) no-repeat;
    background-position: 14px center;
    -webkit-background-size: 24px;
    -moz-background-size: 24px;
    -o-background-size: 24px;
    background-size: 24px;
}

.rtm_post_wrapper.visitor .rtm_msg_wrapper {
    float: right;
    clear: unset;
    color: #3c3c3c;
    background: #fff;
}

.rtm_post_wrapper.visitor time {
    text-indent: 55px;
}

.rtm_attachment_wrapper {
    width: calc(100% - 35px);
    height: auto;
    float: right;
    display: block;
    margin-top: 20px;
    margin-right: 35px;
    border: 1px dashed #fff;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    /* background: url(../images/icons/ui/attachment.svg) no-repeat;
    background-position: right top;
    -webkit-background-size: 24px;
    -moz-background-size: 24px;
    -o-background-size: 24px;
    background-size: 24px; */
}

.attachment_header {
    width: 100%;
    height: 35px;
    margin-top: 20px;
}

.attachment_body {
    width: 100%;
    height: calc(100% - 35px);
}

.rtm_attachment_file_info {
    width: 50%;
    height: 100%;
    float: right;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
}

.rtm_file_title {
    font-size: 20px;
    padding-top: 20px;
    text-decoration: underline;
}

.rtm_attachment_file_info ul {
    margin-bottom: 20px;
    padding-top: 20px;
    list-style-type: none;
}

.rtm_attachment_file_info ul li {

}

.rtm_attachment_file_info ul li strong {
    
}

.attachment_icon {
    width: 52px;
    height: 32px;
    float: left;
    clear: left;
    background: url(../images/icons/ui/attachment.svg) no-repeat;
    background-size: 24px;
    background-position: 20px center;
}

.rtm_attachment_wrapper h4 {
    width: calc(100% - 52px);
    height: 35px;
    color: #fff;
    font-size: 20px;
    text-indent: 10px;
    line-height: 35px;
    text-decoration: underline;
    font-family: 'Barlow Condensed', sans-serif;
}

.rtm_attachment_wrapper img,
.rtm_attachment_wrapper audio,
.rtm_attachment_wrapper video {
    width: calc(50% - 40px);
    height: auto;
    margin-top: 20px;
    margin-left: 20px;
    padding-bottom: 20px;
}

.rtm_attachment_wrapper img {
    width: 100%;
    height: auto;
    max-width: 150px;
    max-height: 150px;
}

/* .rtm_attachment_wrapper video {
    width: auto;
    height: 150px;
} */

.reply_wrapper {
    width: 100%;
    height: 100px;
    left: 0;
    bottom: 0;
    position: fixed;
    background: #000;
    transition-duration: .35s;
    transition-property: height;
    transition-timing-function: ease-out;
}

.reply_wrapper[data-status="active"] {
    height: 500px;
    background: #000;
}

.reply_wrapper[data-status="active"] #rtm-user-reply {
    padding: 20px;
}

.field_wrapper {
    width: calc(100% - 200px);
    height: 100%;
    float: left;
    clear: left;
}

.reply_cursor {
    width: 100px;
    height: 100px;
    float: left;
    clear: left;
    background: url(../images/icons/ui/cursor.svg) no-repeat;
    background-size: 50px;
    background-position: 20px center;
    animation: flash .5s infinite;
	-moz-animation: flash .5s infinite;
	-webkit-animation: flash .5s infinite;
	animation-direction: alternate-reverse;
	-moz-animation-direction: alternate-reverse;
	-webkit-animation-direction: alternate-reverse;
}

#rtm-user-reply {
    width: calc(100% - 100px);
    height: 100%;
    float: left;
    border: none;
    outline: none;
    color: #fff;
    resize: none;
    font-size: 48px;
    background: none;
    background-color: transparent;
    font-family: 'Barlow Condensed', sans-serif;
}

.send_rtm_reply {
    width: 130px;
    height: 40px;
    color: #EA6083;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    font-weight: 700;
    background: none;
    margin-top: 30px;
    background-color: transparent;
    border: 1px solid #EA6083;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    transition-duration: .35s;
    transition-property: background, color;
    transition-timing-function: ease-out;
    font-family: 'Barlow Condensed', sans-serif;
}

.send_rtm_reply:hover {
    color: #fff;
    background: #EA6083;
}

.info_wrapper {
    width: 100%;
    height: 100%;
}

.rtm_input_row {
    width: 100%;
    height: 50px;
}

.rtm_input_row label {
    width: 25%;
    min-width: 90px;
    max-width: 120px;
    height: 100%;
    color: #fff;
    display: block;
    float: left;
    clear: left;
    font-size: 18px;
    text-indent: 20px;
    line-height: 50px;
    font-family: 'Barlow Condensed', sans-serif;
}

.info_wrapper select {
    width: calc(75% - 20px);
    height: 35px;
    float: right;
    margin-right: 20px;
    margin-top: calc(15px / 2);
    color: #3c3c3c;
    font-size: 18px;
    outline: none;
    font-family: 'Barlow Condensed', sans-serif;
}

.rtm_input {
    width: calc(75% - 20px);
    height: 50px;
    float: right;
    border: none;
    outline: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 50px;
    background: none;
    margin-right: 20px;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    background-color: transparent;
    border-bottom: 1px solid #fff;
    font-family: 'Barlow Condensed', sans-serif;
    transition-duration: .35s;
    transition-property: color, background, text-indent;
    transition-timing-function: ease-out;
}

.rtm_input:focus {
    text-indent: 10px;
    background: #EA6083;
}

.tel_input.error,
.rtm_input.error {
    color: #fff;
    background: #b00020;
}

#rtm-wrapper .tel_input {
    width: 28px;
    height: 35px;
    float: left;
    border: none;
    outline: none;
    min-width: unset;
    margin-top: calc(15px / 2);
    margin-left: 15px;
    text-align: center;
    text-indent: unset;
}

#rtm-wrapper .tel_input:first-child {
    margin-left: 0;
}

.log_info_btn {
    height: 35px;
    float: right;
    clear: right;
}

.log_info_btn:hover {
    
}

/*  END: RTM  */


/*  MEDIA QUERIES  */

@media only screen and (max-width: 768px) and (orientation : landscape) {

	.hamburger_menu {
		width: 100%;
		height: 100%;
		max-width: none;
	}

}

@media (max-width: 500px) {

	.hamburger_menu {
		width: 100%;
		height: 100%;
		max-width: none;
	}

	header {
		background: #fff;
	}

	footer {
		height: 100px;
		background: #fff;
		/* background: rgba(0,0,0,0.3); */
	}

	footer small {
		line-height: unset;
	}

	#copyright {
		width: 100%;
		height: 50px;
		line-height: 50px;
		text-align: center;
	}

	.social_media {
		width: 100%;
		height: 50px;
		margin-right: 0;
	}

	footer .social_media .social_link {
		width: 16.66%;
		height: 50px;
		margin-top: 0;
		margin-left: 0;
	}

	footer small {
		float: unset;
		margin-left: 0;
    }

    .rtm_post_wrapper {
        width: 85%;
        margin-top: 35px;
        margin-right: 20px;
    }

    .rtm_post_wrapper time {
        font-size: 14px;
        font-weight: normal;
    }

    .rtm_arrow_wrapper {
        background: url(../images/icons/ui/right_triangle.svg) no-repeat;
        background-position: -8px center;
        -webkit-background-size: 28px;
        -moz-background-size: 28px;
        -o-background-size: 28px;
        background-size: 28px;
    }

    .rtm_header {
        height: 75px;
    }

    .rtm_header img {
        width: 35px;
        height: 35px;
        margin-top: 20px;
        margin-right: 20px;
    }

    .rtm_header h3 {
        font-size: 18px;
        line-height: 75px;
        display: inline-block;
        text-transform: unset; 
    }

    .rtm_header button {
        margin-top: 20px;
    }
    
    .rtm_attachment_wrapper img {
        max-width: 100px;
        max-height: 100px;
    }

    .field_wrapper {
        width: 100%;
        height: calc(100% - 50px);
    }

    .send_rtm_reply {
        display: block;
        margin-top: unset;
        margin: 0 auto;
    }

    #rtm-user-reply {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
    }

    .reply_cursor {
        width: 50px;
        height: 50px;
        float: left;
        clear: left;
        background: url(../images/icons/ui/cursor.svg) no-repeat;
        background-size: 35px;
        background-position: center;
        animation: flash .5s infinite;
        -moz-animation: flash .5s infinite;
        -webkit-animation: flash .5s infinite;
        animation-direction: alternate-reverse;
        -moz-animation-direction: alternate-reverse;
        -webkit-animation-direction: alternate-reverse;
    }

    .reply_wrapper {
        height: 275px;
    }

    .reply_wrapper[data-status="active"] {
        height: 575px;
    }

}


/*  END: MEDIA QUERIES  */

/*  BROWSER SCROLLBAR  */

/* ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    position: fixed;
    right: 0;
    top: 0;
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background: none;
    background-color: transparent;
    background: rgba(0,0,0,0.3);
    background: transparent;
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: rgba(41,61,127,0.3);
}
::-webkit-scrollbar-corner {
    background: none;
    background-color: transparent;
} */

/*  END: BROWSER SCROLLBAR  */


/*  BROWSER PLACEHOLDER  */

/* :-moz-placeholder { color: #fff; }

::-moz-placeholder { color: #fff; }

:-ms-input-placeholder { color: #fff; }

::-webkit-input-placeholder { color: #fff; } */

/*  END: BROWSER PLACEHOLDER  */
 
 
 @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
 @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
 @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

 @-moz-keyframes flash {
	from { opacity: 1; }
	to { opacity: 0; }
}
@-webkit-keyframes flash {
	from { opacity: 1; }
	to { opacity: 0; }
}
@keyframes flash {
	from { opacity: 1; }
	to { opacity: 0; }
}

@-webkit-keyframes BackgroundChange {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes BackgroundChange {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-o-keyframes BackgroundChange {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes BackgroundChange { 
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}