/* Main */
:root {
    --bs-primary: #ee4774;
    --bs-secondary: #222222;
    --bs-success: #47EEC1;
    --bs-light: #F5F5F5;
    --bs-dark: #070707;
}

::-webkit-input-placeholder { /* Edge */
  color: #d0d3d6 !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #d0d3d6 !important;
}

::placeholder {
  color: #d0d3d6 !important;
}

::-moz-selection { /* Code for Firefox */
  background: var(--bs-primary);
  color: #fff;
}

::selection {
  background: var(--bs-primary);
  color: #fff;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-size: 14px;
	background-color: #070707;
	color: #fff;
	font-family: 'Open Sans';
}

.hide-scroll { overflow: hidden !important; }

button.cc-nb-okagree {
    color: #fff !important;
    background-color: #ee4774 !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat';
}

video {
  width: 100%;
  height: auto;
}

#post #content h1, .ql-editor h1, #content-admin h1 { font-size: 2.4rem !important; }
#post #content h2, .ql-editor h2, #content-admin h2 { font-size: 28px !important; }
#post #content h3, .ql-editor h3, #content-admin h3 { font-size: 18px !important; }
#post #content h4, .ql-editor h4, #content-admin h4 { font-size: 16px !important; }
#post #content h5, .ql-editor h5, #content-admin h5 { font-size: 14px !important; }
#post #content h6, .ql-editor h6, #content-admin h6 { font-size: 12px !important; }

.display-3 { line-height: 1.1em; }

.pt-7 { padding-top: 80px !important; }
.pb-7 { padding-bottom: 80px !important; }
.py-7 { padding-top: 80px !important; padding-bottom: 80px !important; }
.mt-7 { margin-top: 80px !important; }
.mb-7 { margin-bottom: 80px !important; }
.my-7 { margin-top: 80px !important; margin-bottom: 80px !important; }

.pt-9 { padding-top: 130px !important; }
.pb-9 { padding-bottom: 130px !important; }
.py-9 { padding-top: 130px !important; padding-bottom: 130px !important; }
.mt-9 { margin-top: 130px !important; }
.mb-9 { margin-bottom: 130px !important; }
.my-9 { margin-top: 130px !important; margin-bottom: 130px !important; }

@media screen and (max-width: 767px) {
  .py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .pt-7 { padding-top: 40px !important; }
  .pb-7 { padding-bottom: 40px !important; }
  .py-7 { padding-top: 40px !important; padding-bottom: 40px !important; }
  .mt-7 { margin-top: 40px !important; }
  .mb-7 { margin-bottom: 40px !important; }
  .my-7 { margin-top: 40px !important; margin-bottom: 40px !important; }

  .pt-9 { padding-top: 65px !important; }
  .pb-9 { padding-bottom: 65px !important; }
  .py-9 { padding-top: 65px !important; padding-bottom: 65px !important; }
  .mt-9 { margin-top: 65px !important; }
  .mb-9 { margin-bottom: 65px !important; }
  .my-9 { margin-top: 65px !important; margin-bottom: 65px !important; }
}

.grey-border {
	border-bottom: 1px solid #222 !important;
}

.border,
.border-top,
.border-bottom,
.border-right,
.border-left {
    border-color: #222 !important;
}

.border { border-radius: .25em; }

.bg-white * {
    color: #010101;
}
.bg-medium {
    background-color: #121212;
}

.text-primary { color: var(--bs-primary) !important; }

img { width: 100%; }

.no-padding { padding-top: 0 !important; padding-bottom: 0 !important }

.rotate {
  animation: rotation 1s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

#loading {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: calc(50% - 105px);
}
#loading span {
  font-size: 100px;
  color: #222;
}

#nav-search * {
	-webkit-transition: all 200ms;
	   -moz-transition: all 200ms;
	     -o-transition: all 200ms;
	        transition: all 200ms;
}

a { color: #fff; text-decoration: none; }
a:hover { color: rgba(255,255,255,0.75); text-decoration: none; }

.btn {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.btn-primary {
	background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.btn-primary:disabled,
.btn-primary.disabled{
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    opacity: .65;
}

.btn-secondary {
	background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}
.btn-secondary:disabled,
.btn-secondary.disabled{
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    opacity: .65;
}

.btn-link, .btn-link:hover {
	background-color: transparent;
    border-color: transparent;
    color: #fff;
}
.btn-secondary:disabled,
.btn-secondary.disabled{
    background-color: transparent;
    border-color: transparent;
    opacity: .65;
}

.btn-success {
    background-color: var(--bs-success);
    border-color: var(--bs-success);
}
.btn-success:disabled,
.btn-success.disabled{
    background-color: var(--bs-success) !important;
    border-color: var(--bs-success) !important;
    opacity: .65;
}

.btn-primary:hover,
.btn-success:hover,
.btn-check:focus+.btn, 
.btn:focus,
.btn-check:active+.btn-success, 
.btn-check:checked+.btn-success, 
.btn-success.active, 
.btn-success:active, 
.btn-primary.active, 
.btn-primary:active, 
.show>.btn-success.dropdown-toggle {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

@media (min-width: 576px) { .valign-middle-sm { position: absolute; top: 50%; transform: translateY(-50%); } }
@media (min-width: 768px) { .valign-middle-md { position: absolute; top: 50%; transform: translateY(-50%); } }
@media (min-width: 992px) { .valign-middle-lg { position: absolute; top: 50%; transform: translateY(-50%); } }
@media (min-width: 1200px) { .valign-middle-xl { position: absolute; top: 50%; transform: translateY(-50%); } }

.container, .navbar {
  padding: 0 15px;
  max-width: 1335px;
  margin: 0 auto;
}

/* Form Elements */
.form-label {
  display: block;
}

.form-control:focus, .btn:focus {
    box-shadow: none;
	outline: 0;
	border: 0;
}

.btn.btn-lg {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 15px 38px;
	height: 52px;
	line-height: 22px;
}

.form-control:disabled, .form-control[readonly] {
    background: #111;
    color: #444;
}

::-webkit-input-placeholder { color: #ccc !important; }
:-ms-input-placeholder { color: #ccc !important; }
::placeholder { color: #ccc !important; }

/* Navigation */
header {
	background-color: #070707;
	z-index: 2000 !important;
}
#site-logo {
    height: 78px;
    margin-left: -2px;
    width: auto !important;
}

.navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand { padding: 0; z-index: 1001; }

.navbar-dark .navbar-nav .nav-link {
	color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .7rem;
    padding-left: .7rem;
}

.navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {
	color: #ee4774;
}

.social-nav-item a {
    line-height: 36px;
    padding-right: 10px;
}

.dropdown-menu {
  background-color: #070707;
  border: 1px solid #222;
}

.dropdown-menu .dropdown-item {
    color: #fff;
    background-color: #070707 !important;
    font-size: 13px;
    line-height: 34px;
    border-bottom: 1px solid #222;
}

.dropdown-menu .dropdown-item:last-child {
    border-bottom: 0;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active {
  color: rgba(255,255,255,.75);
}

@media screen and (min-width: 992px) {
	.social-nav-item { padding: 0 0.5rem; }
	.social-nav-item a { padding: 0 3px; }
}

#page-title {
  padding: 120px 0 60px;
  background: #000 url('../images/gradient-bg-hero.jpg') no-repeat;
    background-position-x: 0%;
    background-position-y: 0%;
  background-position: center;
}

.tooltip { z-index: 9999; }

.admin #page-title,
.admin #hero{
    padding: 40px;
    margin: -50px -50px 0;
}

#page-title .image img {
  width: 88px;
  border-radius: 10px;
  float: left;
  margin: 0 20px 12px 0;
}

#page-title a, #page-title p {
  color: rgba(255,255,255,0.75);
}

#page-title a:hover {
  color: #fff;
}

#page-title span span {
  font-size: 16px;
  margin-right: 3px;
  color: #fff;
}

#page-title span span.material-icons {
  vertical-align: middle;
  display: inline-block;
  margin-top: -2px;
}

#page-title p > span {
  display: inline-block;
  margin-right: 15px;
}

/* Nav Search */
#nav-search { position: relative; margin-left: 15px; width: 20px; }

#nav-search input {
	position: absolute;
	right: 35px;
    background-color: #111;
    border: 0;
    color: #fff;
    width: 0;
    padding: .375rem 0;
    margin-right: 0;
    font-size: 14px;
    line-height: 36px;
    height: 36px;
}

#nav-search.open input {
	width: 215px;
	padding: .375rem .75rem;
	margin-right: 10px;
}

#nav-search button,
#nav-search a.open-search {
    background-color: #ee4774;
    border: 0;
    color: #fff;
    position: absolute;
    right: 0;
    padding: 0 8px;
}

#nav-search.open a.open-search,
#nav-search a.close-search,
#nav-search button {
	visibility: hidden;
	opacity: 0;
    z-index: 0;
}

#nav-search a,
#nav-search.open a.close-search,
#nav-search.open button {
	visibility: visible;
	opacity: 1;
    z-index: 1;
}

#nav-search span {
    font-size: 20px;
    line-height: 36px;
}

#nav-search a.close-search {
	background-color: transparent;
	color: #fff;
	line-height: 36px;
	padding: 0;
	right: 55px;
	position: absolute;
	border: 0;
	height: 36px;
}

#nav-search button.search-mobile { display: none; }

.navbar-toggler {
    color: #fff !important;
    border: 0;
    z-index: 1001;
}

@media screen and (max-width: 991px) {
	.navbar-expand-lg .navbar-nav .nav-link {
	    padding-right: 0;
	    padding-left: 0;
	}
	#nav-search {
		margin-bottom: 30px !important;
		margin-top: 10px !important;
		width: 100%;
		margin-left: 0;
	}
	#nav-search input {
		width: calc(100% - 44px) !important;
		position: relative;
		visibility: visible;
		opacity: 1;
		right: 0;
		padding: 0 15px;
		line-height: 36px;
		height: 36px;
	}
	#nav-search button.search-desktop,
	#nav-search a { display: none; }
	#nav-search button.search-mobile { width: 36px; display: block; visibility: visible; opacity: 1 }
}

/* Hero */
#hero, footer { 
	background: #000 url('../images/gradient-bg-hero.jpg') no-repeat;
	position: relative;
}

#hero {
    background-position: -242px -208px;
    position: relative;
    padding-top: 60px;
	padding-bottom: 60px;
}

#hero.contest-hero {
    background-position: center center;
}

#hero.no-bg {
  background: no-repeat;
}

#homepage #sponsors img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 60px;
}

h1.display-4 { line-height: 1em; }
#hero p { margin: 20px 0 25px; }

#hero-images { margin-top: 60px; }
#hero-images a img { width: 32.333333%; margin-top: -38px; box-shadow: 0 0 30px #000; border-radius: 3px; height: auto !important; }
#hero-images a:first-child img { margin-top: 38px }
#hero-images a:last-child img { right: 0; margin-top: 0; }

/* Contest */
#contest-header,
#contest-footer { 
    background: none;
    background-color: #000 !important; 
}

.collapse .card,
.collapsing .card{
    background: transparent;
    padding: 0;
}
a[data-bs-toggle="collapse"]:before {
    content: '›';
    font-size: 18px;
    margin-right: 5px;
}
a[data-bs-toggle="collapse"] {
    line-height: 22px;
    vertical-align: middle;
}

@media screen and (min-width: 1564px) {
	#hero-text {
		padding-top: 12rem;
		padding-bottom: 3rem;
	}
	h1.display-4 { font-size: 7em; }
}

@media screen and (min-width: 991px) {
	#hero-images { position: relative; margin-top: 0; }
	#hero-images a img {
	    top: 50%;
	    transform: translateY(-50%);
	    position: absolute;
	    right: 30.333333%;
	    z-index: 0;
	}
	#hero-images a:first-child img { right: 60.666667%; z-index: 2; }
	#hero-images a:last-child img { right: 0; z-index: 1; }
}

@media screen and (max-width: 991px) {
	#hero-text h1 { font-size: 36px !important; }
	.navbar-collapse {
        height: 100% !important;
        max-height: 100% !important;
        top: 0;
        position: fixed;
        width: 100% !important;
        max-width: 100% !important;
        transition: transform 0.4s ease;
        left: 0;
        background-color: #010101;
        z-index: 1000;
        display: block !important;
        padding: 98px 15px 15px;
        overflow: auto;
    }
    
    .collapsing {
        -webkit-transition: none !important;
        transition: none !important;
        -webkit-transition: transform 0.4s ease !important;
        transition: transform 0.4s ease !important;
    }

    /* Prevent scrolling on the html element when navbar is open */
    .no-scroll {
        overflow: hidden;
    }

    /* Navbar and main slide effect */
    .navbar-collapse:not(.show) {
        transform: translateX(-100%);
    }
    
    .navbar-collapse.nav-visible {
        transform: translateX(0);
    }
    
    /*main { 
        transform: translateX(0);
        transition: transform 0.4s ease; 
    }

    main.body-pushed {
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }*/
    form#nav-search .search-mobile { margin-right: 15px !important;}
    
    .navbar-nav > .nav-item:not(#signup-button):not(.dropdown.show) {
        line-height: 32px !important;
        border-bottom: 1px solid #222 !important;
    }
    .dropdown-toggle::after {
        position: absolute;
        right: 14px;
        top: 25px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1563px) { #hero-text { padding-top: 120px; padding-bottom: 3em; } }
@media screen and (min-width: 1564px) and (max-width: 1920px) { #hero-text { padding-top: 120px; padding-bottom: 3em; } }

/* Content */
#content .container {
	padding-top: 70px;
	padding-bottom: 70px;
}

@media screen and (max-width: 991px) {
	#content .container {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/* Listing */
.with-header h4,
.with-header h2.h4 {
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	.with-header h4,
	.with-header h2.h4 {
		font-size: 1rem;
		margin-bottom: 20px;
	}	
}

.flex-grid {
	margin: 0 auto;
	display: grid;
	grid-auto-rows: auto;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}
.grid-1 { grid-template-columns: repeat(1, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.grid-7 { grid-template-columns: repeat(7, 1fr); }
.grid-8 { grid-template-columns: repeat(8, 1fr); }
.grid-9 { grid-template-columns: repeat(9, 1fr); }
.grid-10 { grid-template-columns: repeat(10, 1fr); }
.grid-11 { grid-template-columns: repeat(11, 1fr); }
.grid-12 { grid-template-columns: repeat(12, 1fr); }
.grid-13 { grid-template-columns: repeat(13, 1fr); }
.grid-14 { grid-template-columns: repeat(14, 1fr); }
.grid-15 { grid-template-columns: repeat(15, 1fr); }
.grid-16 { grid-template-columns: repeat(16, 1fr); }
.grid-17 { grid-template-columns: repeat(17, 1fr); }
.grid-18 { grid-template-columns: repeat(18, 1fr); }
.grid-19 { grid-template-columns: repeat(19, 1fr); }
.grid-20 { grid-template-columns: repeat(20, 1fr); }
.grid-21 { grid-template-columns: repeat(21, 1fr); }
.grid-22 { grid-template-columns: repeat(22, 1fr); }
.grid-23 { grid-template-columns: repeat(23, 1fr); }
.grid-24 { grid-template-columns: repeat(24, 1fr); }
.grid-25 { grid-template-columns: repeat(25, 1fr); }
.grid-26 { grid-template-columns: repeat(26, 1fr); }
.grid-27 { grid-template-columns: repeat(27, 1fr); }
.grid-28 { grid-template-columns: repeat(28, 1fr); }
.grid-29 { grid-template-columns: repeat(29, 1fr); }
.grid-30 { grid-template-columns: repeat(30, 1fr); }
.grid-31 { grid-template-columns: repeat(31, 1fr); }
.grid-32 { grid-template-columns: repeat(32, 1fr); }
.grid-33 { grid-template-columns: repeat(33, 1fr); }
.grid-34 { grid-template-columns: repeat(34, 1fr); }
.grid-35 { grid-template-columns: repeat(35, 1fr); }
.grid-36 { grid-template-columns: repeat(36, 1fr); }
.grid-37 { grid-template-columns: repeat(37, 1fr); }
.grid-38 { grid-template-columns: repeat(38, 1fr); }
.grid-39 { grid-template-columns: repeat(39, 1fr); }
.grid-40 { grid-template-columns: repeat(40, 1fr); }
.grid-41 { grid-template-columns: repeat(41, 1fr); }

.flex-grid .cropped {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    background-color: #222;
    border-radius: 15px;
}

#videos .flex-grid:not(.suggestions) .cropped {
    padding-bottom: 56%;
}

.view-all {
  position: absolute;
  right: 20px;
  top: 5px;
  color: #bcbcbc;
}

.view-all:hover {
  color: #fff;
}

.video-image i {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.3);
    line-height: 100%;
    vertical-align: middle;
    text-align: right;
    padding-top: 20px;
    padding-right: 25px;
    font-size: 30px;
    opacity: 0;
    visibility: hidden;
    text-shadow: 0 0 30px #000000;
    border-radius: 15px;
-webkit-transition: all 200ms;
   -moz-transition: all 200ms;
     -o-transition: all 200ms;
        transition: all 200ms;
}

.grid-item:hover .video-image i {
    opacity: 1;
    visibility: visible;
}

.flex-grid img {
    border-radius: 15px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    object-fit: cover;
    height: 100%;
}

.grid-item a {
	display: block;
}

.grid-item h5 {
	margin-top: 15px;
	font-size: 12px;
}

.grid-item p {
	color: #858585;
	font-size: 12px;
}

.carousel-control-prev, .carousel-control-next {
	width: 40px;
	height: calc(100% - 36px);
}
.with-secondary .carousel-control-prev, .with-secondary  .carousel-control-next {
	height: calc(100% - 72px);
}
@media screen and (max-width: 1199px) { 
    .grid-lg-1 { grid-template-columns: repeat(1, 1fr); }
    .grid-lg-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-lg-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-lg-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-lg-5 { grid-template-columns: repeat(5, 1fr); }
    .grid-lg-6 { grid-template-columns: repeat(6, 1fr); }
}
@media screen and (max-width: 991px) { 
    .grid-md-1 { grid-template-columns: repeat(1, 1fr); }
    .grid-md-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-md-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-md-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-md-5 { grid-template-columns: repeat(5, 1fr); }
    .grid-md-6 { grid-template-columns: repeat(6, 1fr); }
}
@media screen and (max-width: 767px) { 
    .carousel-control-prev, .carousel-control-next { display: none; }
    .grid-sm-1 { grid-template-columns: repeat(1, 1fr); }
    .grid-sm-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-sm-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-sm-4 { grid-template-columns: repeat(4, 1fr); }
}
@media screen and (max-width: 575px) { 
	.grid-xs-1 { grid-template-columns: repeat(1, 1fr); }
	.grid-xs-2 { grid-template-columns: repeat(2, 1fr); }
	.grid-xs-3 { grid-template-columns: repeat(3, 1fr); }
}

.scroll-1 .flex-grid { width: 100%; }
.scroll-2 .flex-grid { width: 153%; }
.scroll-2 .grid-3 { width: 126%; }
.scroll-3 .flex-grid { width: 167%; }
.scroll-3 .grid-5 { width: 209%; }
.scroll-4 .flex-grid { width: 250%; }
.scroll-4 .grid-7 { width: 291%; }
.scroll-5 .flex-grid { width: 333%; }
.scroll-5 .grid-9 { width: 374%; }
.scroll-6 .flex-grid { width: 416%; }
.scroll-6 .grid-11 { width: 457%; }
.scroll-7 .flex-grid { width: 498%; }
.scroll-7 .grid-13 { width: 540%; }
.scroll-8 .flex-grid { width: 581%; }
.scroll-8 .grid-15 { width: 622%; }
.scroll-9 .flex-grid { width: 664%; }
.scroll-9 .grid-17 { width: 705%; }
.scroll-10 .flex-grid { width: 746%; }
.scroll-10 .grid-19 { width: 788%; }
.scroll-11 .flex-grid { width: 830%; }
.scroll-11 .grid-21 { width: 870%; }
.scroll-12 .flex-grid { width: 912%; }
.scroll-12 .grid-23 { width: 953%; }
.scroll-13 .flex-grid { width: 995%; }
.scroll-13 .grid-25 { width: 1035%; }
.scroll-14 .flex-grid { width: 1078%; }
.scroll-14 .grid-27 { width: 1120%; }
.scroll-15 .flex-grid { width: 1160%; }
.scroll-15 .grid-29 { width: 1200%; }
.scroll-16 .flex-grid { width: 1240%; }
.scroll-16 .grid-31 { width: 1285%; }
.scroll-17 .flex-grid { width: 1330%; }
.scroll-17 .grid-33 { width: 1370%; }
.scroll-18 .flex-grid { width: 1410%; }
.scroll-18 .grid-35 { width: 1450%; }
.scroll-19 .flex-grid { width: 1485%; }
.scroll-19 .grid-37 { width: 1510%; }
.scroll-20 .flex-grid { width: 1570%; }
.scroll-20 .grid-39 { width: 1610%; }
.scroll-21 .flex-grid { width: 1655%; }
.scroll-21 .grid-41 { width: 1695%; }


.horizontal-scroll {overflow-y: hidden; overflow-x: scroll; margin: 0 -15px; }
.horizontal-scroll .flex-grid { padding: 0 15px; }

@media screen and (min-width: 768px) {
	.horizontal-scroll { margin: 0 -45px; }
	.horizontal-scroll .flex-grid { padding: 0 45px; }
}

.horizontal-scroll { display: block; }
.grid-desktop { display: none; }
.carousel { display: none; }
@media screen and (min-width: 1140px) {
	.horizontal-scroll { display: none; }
	.grid-desktop { display: block; }
	.carousel { display: block; }
}

/* Boxes */
.white-box {
	background-color: #fff;
	border-radius: 15px;
	margin: 20px 0;
	overflow: hidden;
}
.white-box h1,
.white-box h2,
.white-box h3,
.white-box h4,
.white-box h5,
.white-box h6 { color: #070707; }
.white-box p { color: #959595; }
.white-box > div { padding: 90px; }

@media screen and (max-width: 567px) {
	.white-box > div { padding: 50px; }
}

@media screen and (max-width: 1200px) {
	#get-published-cta h1, #subscribe-box h1 { font-size: 28px !important; }
}

/* Subscribe Box */
#subscribe-form {
    margin-top: 30px;
    position: relative;
}

#subscribe-input {
    background-color: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    padding: 15px 22px;
    border-radius: .3rem;
    border: 0;
    width: 100%;
    box-shadow: 0 0 30px #0000003b;
    line-height: 12px;
    height: 42px;
}

#subscribe-button {
	position: absolute;
	right: 0;
	bottom: 0;
	width: auto;
	border: 0;
	outline: 0;
	box-shadow: none;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	min-width: 141px;
}

#subscribe-box .row > div:last-child { padding: 90px 20px; }
#subscribe-image { text-align: center; }

@media screen and (min-width: 992px) {
	#subscribe-box .row > div:first-child { padding-right: 0; }
}

@media screen and (max-width: 991px) { 
	#subscribe-box .row > div:last-child { padding-top: 0; }
}

@media screen and (max-width: 567px) {
	#subscribe-input, #subscribe-button {
		width: 100%;
		border-radius: 4.8px
	}
	#subscribe-button { margin-top: 15px; position: relative; }
}

/* Get Published Box */
.kavyar-logo {
	background: #070707 url('../images/kavyar-logo.jpg') center center no-repeat;
	background-size: cover;
	min-height: 300px;
}

/* Footer */
footer {
    background-position: 0;
}

.admin footer {
    padding-bottom: 8rem !important;
    padding-left: 270px;
}

footer p { color: #858585; font-size: 12px; }

#footer-logo img {
    width: 200px;
}

#footer-links { padding: 0; }

#footer-links li {
    list-style: none;
    display: inline-block;
    padding: 0 10px;
}

#footer-links li a {
    color: #fff;
    font-size: 12px;
}

#footer-social a {
	font-size: 16px;
	display: inline-block;
	width: 36px;
	line-height: 36px;
}

/* Back to top */
#back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: block;
    width: 40px;
    height: 40px;
    background: #ee4774;
    color: #fff;
    border-radius: 40px;
    line-height: 40px;
    text-align: center;
    z-index: 998;
}

#back-to-top span {
    line-height: 40px;
}

#back-to-top:hover span {
    transform: translateY(-3px);
}

/* ADMIN */

/* Side Menu */
section#side {
    position: fixed;
    left: 0;
    width: 270px;
    bottom: 0;
    top: 0;
    padding: 0 30px;
    border-right: 1px solid #222;
    overflow: auto;
    height: 100vh;
    z-index: 999;
}

div#admin-logo {
    text-align: center;
}

#side-menu {
    padding: 0;
    margin-top: 50px;
    padding-bottom: 200px;
}

#side-menu ul {
    margin: 0;
}
#side-menu .card {
    background: none;
    border-width: 0 0 1px 0;
    border-color: #222;
    border-radius: 0;
}
#side-menu .card .card-header {
    padding: 0;
    border: 0;
    background: none;
    border-radius: 0;
}
#side-menu .card button {
    font-size: 14px;
    color: #fff;
    display: block;
    width: 100%;
    text-align: left;
    border-radius: 0;
    padding: 0;
    line-height: 45px;
    text-decoration: none;
    background: none !important;
}
#side-menu .card button:after {
    content: '\e5c5';
    font-family: 'Material Icons';
    position: absolute;
    right: 0;
    font-size: 16px;
}

#side-menu .card button:not(.collapsed):after {
    content: '\e5c7';
}

#side-menu li a {
    line-height: 45px;
    border-bottom: 1px solid #222;
    display: block;
}

#side-menu li a span,
#side-menu button span{
    font-size: 15px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 15px;
}
#side-menu .card .card-body {
    padding: 0 0 10px;
}
#side-menu .card .card-body li a {
    line-height: 36px;
    border: 0;
    padding-left: 15px;
}

/* Bottom Menu */
#bottom-menu {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    height: 80px;
    display: none;
    background: #010101;
    border-top: 1px solid #222;
    justify-content: space-around;
    align-items: center;
}
#bottom-menu a {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
}

/* Top Menu */
section#top {
    position: fixed;
    left: 270px;
    top: 0;
    height: 78px;
    right: 0;
    border-bottom: 1px solid #222;
    background-color: #070707;
    z-index: 2999;
}

section#top .container {
    max-width: 100%;
    padding: 0 60px;
}

a#logout {
    float: right;
    line-height: 78px;
    margin-right: 60px;
}

a#view-site {
  float: right;
  line-height: 78px;
  margin-right: 20px;
  padding: 0 20px;
}

/* Admin Main */
section#main {
    padding: 128px 60px 80px 320px;
}

/* Admin Post Listing */
#posts-header form {
  height: 34px;
  margin-top: 10px !important;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #222;
}

#posts-header input, #posts-header select {
    height: 32px;
    font-size: 14px;
    line-height: 32px;
    border-radius: 0;
    border: 0;
    width: auto;
    max-width: 220px;
}

#posts-header button {
    line-height: 32px;
    height: 32px;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 0;
}

a#add-new {
  height: 34px;
  font-size: 13px;
  margin-top: 10px;
  margin-left: 10px;
  line-height: 34px;
  padding: 0 .75rem;
}

#posts { 
    grid-row-gap: 0;
    clear: both;
    margin-top: 50px;
}
/*#post #posts { padding-top: 98px; }*/

#posts .grid-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #222;
}

#posts .grid-item:last-child {
  border-bottom: 0;
}

#posts .grid-item .image {
    width: 100px;
    margin-right: 20px;
}

#posts .grid-item h5 {
    margin-top: 10px;
}

#posts .grid-item a {
    display: inline-block;
    width: 32px;
    text-align: right;
}

#posts .grid-item span.material-icons {
    font-size: 26px;
    display: block;
}

.grid-item.blurred .image .cropped,
.image.blurred .cropped{
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.grid-item.blurred .image img,
.image.blurred img,
.blurred img {
    filter: blur(0.3rem);
    border-radius: 0;
    opacity:.8;
}
.grid-item.blurred .image span.material-icons,
.image.blurred span.material-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.blurred-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(0.3rem);
    border-radius: 0;
    opacity:.8;
}
#blurred-content span.material-icons {
    font-size: 22px !important;
    color: #555;
}

.title span {
  color: #a66d30;
  margin-right: 8px;
}

.title span.scheduled {
  color: #25a9d9;
  margin-right: 8px;
}

.social-post {
    color: #f4fc03 !important;
}

.social-story {
    color: #ba36cf !important;
}

.social-1 {
    background-color: #f4fc03 !important;
    color: #000 !important;
}
.social-1 .fc-event-title.fc-sticky {
    color: #000 !important;
}

.social-2 {
    background-color: #ba36cf !important;
}

.post-status {
  line-height: 2.15em;
  border: 1px solid #222;
  background-color: #000;
  padding: .5rem 1rem;
  border-radius: 5px;
}

.admin-icon-links {
    min-width: 104px;
}

#scheduled {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  padding: 5px 10px;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid #222;
}

.pagination {
    width: 100%;
    display: block;
    height: 36px;
    text-align: right;
}

body.front-end .pagination {
    display: flex;
    justify-content: space-evenly;
    margin-top: 30px;
    gap: 1rem;
    height: auto;
}

.pagination a {
    color: #777;
    margin-left: 10px;
}

body.front-end .pagination a {
  float: none;
  margin: 0;
  background-color: #777;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  line-height: 36px;
  border-radius: 6px;
  font-size: 13px;
  width: 100%;
}

.pagination a:hover {
    color: #fff;
}

body.front-end .pagination a:hover {
    background-color: #ee4774;
}

.pagination .total {
    float: left;
    color: #666;
}

#posts + .pagination {
    margin-top: 0;
    border-bottom: 0;
}

/* Issues Admin */
#posts.issues .grid-item {
    display: block;
    border-bottom: 0;
    position: relative;
}

#posts.issues .grid-item .image {
    width: 100%;
}

#posts.issues .grid-item .admin-icon-links {
    position: absolute;
    top: 31px;
    right: 10px;
    z-index: 2;
    background: #00000070;
    display: none;
    padding: 6px 5px 1px 1px;
    border-radius: 5px;
}

#posts.issues .grid-item:hover .admin-icon-links {
    display: block;
}

#posts.issues img {
    border-radius: 5px;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    width: 100%;
    height: auto;
}

.no-posts {
  color: #858585;
  padding: 50px 0;
}

/* Add Post */
textarea#content-field {
    display: none;
}
#add-post, #edit-post {
  height: 48px;
}
.ql-editor {
  min-height: 250px;
}
.ql-editor * {
  color: #fff !important;
}
.ql-picker-label {
  margin-top: -5px;
}
#content-container .ql-toolbar.ql-snow, #content-container .ql-container.ql-snow,
#edit-wysiwyg .ql-toolbar.ql-snow, #edit-wysiwyg .ql-container.ql-snow {
  border: 0;
}
#content-container,
#edit-wysiwyg {
  border: 1px solid #222;
  border-radius: .25rem;
  min-height: 300px;
}
.ql-container {
  font-family: 'Open Sans';
  font-size: 14px;
  color: #bcbcbc;
}
.ql-snow.ql-toolbar button:hover, .ql-snow .ql-toolbar button:hover, .ql-snow.ql-toolbar button:focus, .ql-snow .ql-toolbar button:focus, .ql-snow.ql-toolbar button.ql-active, .ql-snow .ql-toolbar button.ql-active, .ql-snow.ql-toolbar .ql-picker-label:hover, .ql-snow .ql-toolbar .ql-picker-label:hover, .ql-snow.ql-toolbar .ql-picker-label.ql-active, .ql-snow .ql-toolbar .ql-picker-label.ql-active, .ql-snow.ql-toolbar .ql-picker-item:hover, .ql-snow .ql-toolbar .ql-picker-item:hover, .ql-snow.ql-toolbar .ql-picker-item.ql-selected, .ql-snow .ql-toolbar .ql-picker-item.ql-selected {
    color: #fff !important;
}
.ql-snow.ql-toolbar button:hover .ql-stroke, .ql-snow .ql-toolbar button:hover .ql-stroke, .ql-snow.ql-toolbar button:focus .ql-stroke, .ql-snow .ql-toolbar button:focus .ql-stroke, .ql-snow.ql-toolbar button.ql-active .ql-stroke, .ql-snow .ql-toolbar button.ql-active .ql-stroke, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke, .ql-snow.ql-toolbar button:hover .ql-stroke-miter, .ql-snow .ql-toolbar button:hover .ql-stroke-miter, .ql-snow.ql-toolbar button:focus .ql-stroke-miter, .ql-snow .ql-toolbar button:focus .ql-stroke-miter, .ql-snow.ql-toolbar button.ql-active .ql-stroke-miter, .ql-snow .ql-toolbar button.ql-active .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
    stroke: #fff !important;
}
.toolbar-fixed .ql-toolbar {
  position: fixed;
  top: 78px;
  z-index: 10;
  background-color: #070707;
}
.form-control {
  background-color: #000;
  border-color: #222;
  color: #fff;
}
.checkboxes label {
  margin-right: 10px;
}

#project-credits .grid-item div {
  width: calc(33.3% - 5px);
}

#project-credits {
  padding: 20px;
  border: 1px solid #222;
  border-radius: .25em;
}

#project-credits .flex-grid.grid-list {
  gap: 0;
}

#project-credits .grid-item {
  border-bottom: 1px solid #222;
  padding: 18px 0;
}

#credit-suggest {
  gap: 0;
}

#credit-suggest .grid-item {
  cursor: pointer;
  padding: 10px 0;
}

.remove-credit {
  font-size: 15px;
  cursor: pointer;
}

#add-new-credit.grid-item .credit-instagram {
  width: calc(33.3% + 15px);
}

#add-new-credit,
#project-credits .grid-list .grid-item:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#add-new-credit-button { padding: 0 !important; }

#project-credits .grid-item div {
    width: 33.3%;
}

#add-new-credit .credit-name input {
  border-right: 0 !important;
  border-radius: .25em 0 0 .25em;
}

#add-new-credit .credit-role input {
  border-radius: 0;
}

#add-new-credit .credit-instagram input {
  border-left: 0;
  border-radius: 0 .25em .25em 0;
}

#project-images {
  border: 1px solid #222;
  border-radius: .25em;
  padding: 20px;
}

.grid-item{
  position: relative;
}

#image-gallery-inner .grid-item {
    width: 156px;
}

#project-images .grid-item img,
#image-gallery-inner .grid-item img {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  top: auto;
  object-fit: inherit;
  height: auto;
  border-radius: 0;
   border: 3px solid transparent;
}

#project-images .grid-item span.remove-image,
#image-gallery-inner .grid-item span.delete-image,
#images-list .grid-item .delete-item {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 14px;
  padding: 5px 10px;
  background-color: #00000050;
  display: none;
  cursor: pointer;
}

#project-images i.sort-handle {
  position: absolute;
  left: 5px;
  top: 5px;
  font-size: 14px;
  padding: 5px 10px;
  background-color: #00000050;
  cursor: pointer;
  display: none;
}

#project-images .grid-item:hover span.remove-image,
#project-images .grid-item:hover i.sort-handle,
#image-gallery-inner .grid-item:hover span.delete-image,
#images-list .grid-item:hover .delete-item{
    display: block;
}

.ui-sortable-placeholder {
    background-color: #000 !important;
    border: 3px dashed #666 !important;
}

/*label[for="featured-image-field"] { margin-top: 25px !important; }*/

label[for="featured-image-field"] img {
  border: 1px solid #222;
  border-radius: .25em;
  cursor: pointer;
}

#image-gallery {
  background-color: #070707;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 50px;
}

#image-gallery .close-gallery {
  float: right;
  cursor: pointer;
}

#gallery-container {
  position: absolute;
  top: 100px;
  left: 50px;
  right: 50px;
  bottom: 100px;
  overflow: hidden;
  padding: 20px;
  background-color: #111;
  border-radius: .25em;
}

#image-gallery-inner {
    width: 100%;
    overflow: auto;
}

#image-preview {
  width: 400px;
  padding-left: 20px;
  box-sizing: border-box;
  overflow: auto;
}

#image-preview-close::before {
  content: '\e5cd';
  font-family: 'Material Icons';
  position: absolute;
  right: 26px;
  top: 26px;
  padding: 5px 10px;
  background-color: #00000050;
  cursor: pointer;
}

#image-preview p {
  word-wrap: break-word;
  padding: 15px;
  background-color: #000;
  border: 1px solid #222;
  border-radius: .25em;
}

#image-gallery-inner .flex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 156px);
    justify-content: space-around;
    gap: 10px !important;
}

#image-gallery-inner .grid-item.selected img {
  border: 3px solid #ee4774;
}

#insert-images {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

#upload-image-form {
  width: auto;
  position: absolute;
  top: 42px;
  left: 50px;
}

#upload-image {
  display: none;
}

#upload-image-form label { cursor: pointer; }

#image-gallery>.loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  background-color: #0009;
}

#image-gallery>.loading .rotate {
  position: absolute;
  font-size: 100px;
  color: #222;
  top: calc(50% - 100px);
}

#image-gallery-inner .grid-item.loading {
  background-color: #000;
  text-align: center;
  border: 1px solid #222;
}

#image-gallery-inner .grid-item.loading span {
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  color: #222;
}

#search-gallery {
  position: absolute;
  left: 195px;
  top: 41px;
  width: 350px;
}

#load-more {
  position: absolute;
  bottom: 50px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #222;
  border-radius: 4px;
  overflow: hidden;
}

#post-credits .grid-item {
  border: 1px solid #222;
  border-radius: .25em;
  padding: 20px;
  min-width: 0;
}

#post-credits .image {
  width: 44px;
  float: left;
  margin: 0 12px 5px 0;
}

#post-credits .grid-item h4 a {
  font-size: .8rem;
}

#post-credits .grid-item p {
  margin-bottom: .5em;
}

#post-credits .credit-role a {
  display: inline-block;
  color: #858585;
}

#post-credits .grid-item a.credit-instagram {
  font-size: 12px;
  color: #ee4774;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

#post-credits .credit-role a:hover,
#post-credits .grid-item a.credit-instagram:hover {
    text-decoration: underline;
}

#post-issues {
  padding: 20px 10px;
}

#post-issues .grid-item {
  margin: 0 10px;
}
.no-square-images .cropped {
    padding: 0 !important;
}
.no-square-images img {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  height: auto !important;
  border-radius: .25em !important;
}

/* People & Categories */
.grid-item .title a {
    color: #858585 !important;
}

.grid-item .title a:hover {
    text-decoration: underline;
}

.grid-item .icon {
    padding-top: 8px;
    margin-right: 15px;
}

#posts.people .grid-item,
#posts.categories .grid-item{
    padding: 10px 0 0;
}

#posts.people .grid-item .admin-icon-links a,
#posts.categories .grid-item .admin-icon-links a {
    margin-top: 8px;
}

#posts.issues .title {
    width: 100%;
}

#posts.categories .title,
#posts.users .title {
    width: calc(100% - 111px);
}

#posts.with-icon .icon {
    width: 40px;
}

#close-menu,
#open-menu{
  display: none;
}

/* Posts Front-end */
#post-title {
  position: relative;
}
#post-title h1 {
  font-size: 2.4rem;
  width: calc(100% - 220px);
}
.meta {
  color: #777;
}
.meta a {
  color: #777;
}
.meta a:hover {
  text-decoration: underline;
}
hr {
  border-top: 1px solid #222;
  margin: 1.5rem 0;
}
.social-share {
  min-width: 200px;
  text-align: right;
  position: absolute;
  top: 14px;
  right: 17px;
}
.social-share a {
  font-size: 1.4rem;
  padding: 0 4px 0 2px;
}
#posts .title {
  width: calc(100% - 200px);
}
#content p,
#gallery p,
#edit-wysiwyg p {
  margin: 0;
  color: #bcbcbc;
}

.curated-image {
  padding: 1rem 0;
  border-top: 1px solid #222;
}

/*#post .col-lg-3 {
  margin-top: -98px !important;
}*/

#posts.suggestions .grid-item .image {
  width: 95px;
  margin-right: 15px;
}
#posts.suggestions .title {
  width: calc(100% - 110px);
}
#posts.suggestions h3 {
    font-size: 12px;
}

#post > .container {
    padding: 0;
}

/* Gallery */
#gallery {
  text-align: center;
}
#image-content #gallery {
    margin: 0 -15px;
}
#gallery .grid-item {
  margin-bottom: 30px;
  display: block;
}
#gallery .portrait {
  max-width: 733px;
}
#gallery .landscape {
  max-width: 1100px;
}

/* Galleries Front-end */
#boudoir-galleries {
    gap: 35px;
}

/* Issues Front-end */
button.not-available {
    font-size: 12px !important;
    color: #666;
}

/* Privacy */
#privacy-policy #content p {
    margin-bottom: 20px !important;
}
#privacy-policy #content h3:not(:first-child) {
    margin-top: 50px !important;
}

/* Link in Bio 
#link-in-bio a {
    display: block;
    line-height: 70px;
    font-size: 24px;
}*/

/* Professions */
ul#professions {
  padding: 0;
  list-style: none;
  margin-top: 12px;
}

ul#professions li {
  display: inline-block;
}

ul#professions li a {
  line-height: 32px;
  border: 1px solid #222;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12px;
}

ul#professions li a:hover {
  background-color: #222;
  color: #fff;
}

/* Admin Dashboard */
.report-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.report-grid > div {
  border: 1px solid #222;
  border-radius: .5em;
  padding: 15px;
  display: flex;
  position: relative;
}

.report-grid > div .material-icons {
  color: #444;
  background: #222;
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50px;
  margin-right: 20px;
}

.report-grid > div small {
  color: #444;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.report-grid > div p {
  font-size: 18px;
  margin: 0;
}

.report-grid > div i {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 12px;
  font-style: normal;
}

.icon-link {
  font-size: 13px;
}

.icon-link .material-icons {
  vertical-align: middle;
  font-size: 15px;
  margin-top: -2px;
  margin-right: 10px;
}

#comments {
  border: 1px solid #222;
  border-radius: .5em;
  padding: 20px 20px 0;
}

#comments .grid-item {
  border-bottom: 1px solid #222;
  padding: 0 0 20px;
}

#comments .grid-item:last-child {
  border-bottom: 0;
}

#comments .grid-item .title a {
  color: #fff !important;
}

#comments .grid-item .title small {
  color: #444;
  float: right;
}

#comments .grid-item .title p {
  background-color: #151515;
  padding: 10px;
  margin: 15px 0;
  border-radius: .5em;
}

/* Add Post Content */
#add-content-list > div {
  padding: 10px;
  border: 1px solid #222;
  border-radius: .5em;
  color: #444;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
}

#add-content-list > div:hover {
    color: #fff;
    border-color: #fff;
}

#add-content-list > div span {
    display: block;
}

#content p,
#content-admin p {
    margin: 0;
}

.content-item {
    padding: 20px 15px;
    position: relative;
}

.content-item.type-image {
  text-align: center;
  padding: 0 15px;
  margin: 20px 0;
}

.type-wysiwyg a {
  font-weight: 700;
}

.black-bg-border {
    background-color: #000;
    border: 1px solid #222;
    border-radius: 5px;
    padding: 20px;
}

.content-item.type-image img {
  width: 800px;
  max-width: 100%;
}

.content-item.type-image img.landscape {
  width: 100%;
  max-width: 100%;
}

.ql-align-center {
    text-align: center;
}
.ql-align-right {
    text-align: right;
}

body.mailing-campaigns .content-item.type-image img {
    width: 100%;
}

.content-item.type-wysiwyg a::after,
.content-item.type-image a::after,
#lightbox .project a::after {
  content: '\e157';
  font-family: 'Material Icons';
  font-size: 18px;
  vertical-align: top;
  margin-left: 5px;
  line-height: 21px;
}
.content-item.type-image a::after,
.content-item.type-wysiwyg.no-icon a::after {
    display: none;
}

#embed-video,
#embed-video video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

#embed-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#embed-video h1 {
  font-size: 18px;
  position: absolute;
  left: 30px;
  top: 20px;
  z-index: 2;
}

.content-item.type-video > div {
  position:relative;
}

.type-video img {
  position: absolute;
  opacity: 0.65;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  cursor: pointer;
  z-index:1;
  height: 100%;
}

.type-video .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  cursor: pointer;
  z-index:1;
  height: 100%;
}

.type-video .overlay::after {
  content: "\e037";
  font-family: "Material Icons";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  font-size: 100px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.embed-video {
  font-size: 12px;
  line-height: 18px;
  border: 1px solid #444;
  border-radius: .35rem;
  padding: .5rem 1rem;
  display: inline-block;
  position: absolute;
  top: 1.5rem;
  z-index: 4;
  right: 2rem;
}

.embed-video-code textarea {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  z-index: 4;
  font-size: 13px;
  transform: translate(-50%, -50%);
  height: 99px;
  padding: 10px 20px;
}

.embed-video span {
  vertical-align: top;
  font-size: 15px;
  margin-top: 2px;
  margin-right: .5rem;
}

.type-video video {
  position: relative;
  z-index: 0;
  width: 100%;
  display: block;
}

.type-grid.full-width {
  width: 100%;
}
.type-grid.full-width .flex-grid {
  grid-template-columns: repeat(1, 1fr) !important;
}

@media screen and (min-width: 992px) {
    .type-grid.grid-3 .flex-grid.grid-4 {
      grid-template-columns: repeat(3, 1fr);
    }
}

.type-wysiwyg ol,
.type-wysiwyg ul {
  padding-left: 1.3rem;
}

.type-wysiwyg li {
  margin-bottom: .6rem;
  padding-left: .6rem;
}

.type-curation .grid-item {
  text-align: center;
  height: 100%;
  padding-bottom: 100%;
}

.poses .pose:not(.poses .pose:last-child) {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #222;
}
.poses .pose {
    margin-top: -7rem;
    padding-top: 7rem;
}
.poses .pose img {
  margin: 2rem 0;
}

#poses .loading
{
  grid-column-start: 1;
  grid-column-end: 8;
  text-align: center;
  padding: 50px 0;
  min-height: calc(100vh - 78px);
}

#poses .loading .fa-heart {
    font-size: 40px;
    color: #c50505;
}

#boudoir-poses #page-title {
  padding: 98px 0 10px;
}
#poses-filter {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 10px;
}
#poses-filter a {
  padding: 5px 9px;
  border: 1px solid #444;
  border-radius: 6px;
  display: inline-block;
  font-size: 13px;
}
#poses-filter a.active {
  color: #fff;
  background-color: #333;
}

#boudoir-poses #load-more
{
  position: relative;
  display: block;
  bottom: 0;
  margin-top: 40px;
  width: 100%;
}

#poses .grid-item {
    background-color: #222;
    border-radius: 15px;
    color: #666;
    font-size: 12px;
}

@media (max-width: 991px) {
    #filter-container {
        overflow: auto;
        position: fixed;
        bottom: 0;
        z-index: 2001;
        background: #010101;
        width: 100%;
        border-top: 1px solid #444;
        left: 0;
        right: 0;
        padding: 0 15px;
    }
    #poses-filter {
      width: 1930px;
    }
    #image-preview,
    #image-preview-close {
        display: none !important;
    }
}

#poses-index {
    top: 104px;
}

#navbar-poses + .dropdown-menu
{
  max-height: 400px;
  overflow: auto;
}

#navbar-poses
{
  margin: 0 15px -32px;
  padding: 9px 20px;
  background: #010101;
  display: inline-block;
  border-radius: 6px;
  border: 1px solid #444;
  float: right;
}

#content-admin .content-item {
    margin: 0;
    padding: 20px 15px;
}

#content-admin .content-item span.drag-item,
#content-admin .content-item span.delete-item,
#content-admin .content-item span.edit-item {
    color: #fff;
    position: absolute;
    left: 15px;
    top: 20px;
    cursor: pointer;
    display: none;
    background-color: #000;
    padding: 3px;
    font-size: 17px;
}

#content-admin .content-item span.delete-item,
#content-admin .content-item span.edit-item {
  left: auto;
  right: 15px;
  top: 20px;
  font-size: 15px;
  background: #010101;
}
#content-admin .content-item span.edit-item {
  right: 39px;
}

#content-admin .content-item.type-separator hr,
#content .content-item.type-separator hr{
  margin: 10px 0;
}

#content-admin .content-item:hover span.drag-item,
#content-admin .content-item:hover span.delete-item,
#content-admin .content-item:hover span.edit-item{
    display: block !important;
}

#edit-wysiwyg,
#edit-image-link {
  height: calc(100% - 150px);
  position: fixed;
  top: 100px;
  left: 100px;
  right: 100px;
  z-index: 10000;
  padding: 50px;
  background: #070707;
  border-radius: 5px;
  box-shadow: 0 0 50px #00000080;
}
#edit-image-link { height: auto; }
.material-icons.close-edit-wysiwyg,
.material-icons.close-edit-image-link {
  position: absolute;
  right: 14px;
  top: 14px;
  cursor: pointer;
}
#content-edit-container {
  margin: 0 !important;
  height: calc(100% - 50px);
}
#content-edit-text {
  height: calc(100% - 50px);
}
#content-edit-field {
  display: none;
}

#add-quotation { position: relative; }

#add-quotation textarea.form-control,
blockquote {
  min-height: 300px;
  background-color: #070707 !important;
  padding: 20px 20px 20px 90px;
  color: #777 !important;
}

#add-quotation span,
blockquote::before {
  position: absolute;
  left: 12px;
  top: 6px;
  font-size: 70px;
  color: #777;
}

blockquote {
  min-height: 50px;
  padding: 0 0 0 60px;
}

blockquote::before {
  content: '\e244';
  font-family: 'Material Icons';
  left: 17px;
  top: 15px;
  height: 50px;
  line-height: 50px;
}

#content blockquote::before {
    left: 0;
}

/* Blog */
@media screen and (min-width:768px) {
    #blog .sticky-top,
    #sidebar .sticky-top {
      padding-top: 100px;
      margin-top: -100px;
    }
}

.ad-section {
  position: relative;
}
.ad-section img {
  position: relative;
  border-radius: 0;
  left: auto;
  right: auto;
  bottom: auto;
  top: auto;
  height: auto;
}
.ad-tag {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 10px;
  padding: 2px 5px;
  background-color: #777;
  border-top-left-radius: 3px;
}

.grid-ad {
    grid-column-start: 1;
    grid-column-end: 3;
}
@media screen and (min-width:768px) {
    .grid-ad {
        grid-column-start: 1;
        grid-column-end: 4;
    }
    .grid-md-2 .grid-ad {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

@media screen and (min-width:992px) {
    .col-lg-9 {
        padding-right: 2rem;
    }
    .col-lg-3 {
        padding-left: 2rem;
        border-left: 1px solid #222;
    }
    .grid-3 .grid-ad {
        grid-column-start: 1;
        grid-column-end: 4;
    }
}

.link-list ul {
  list-style: none;
  padding: 0;
}

.link-list ul li a {
  padding: 10px 0;
  border-top: 1px solid #222;
  display: block;
}

#blog-posts .grid-item {
  padding-bottom: 35px;
  border-bottom: 1px solid #222;
  margin-bottom: 30px;
  display: flex;
}

#blog-posts .grid-item:last-child {
  border-bottom: 0;
}

#blog-posts .grid-item .image {
  width: 160px;
  margin-right: 20px;
  min-width: 160px;
}

#blog .issues .grid-item {
  padding-bottom: 0;
}

/* Curations */
.add-curation-item, .pin-image {
  position: absolute;
  top: 10px;
  right: calc(50% - 25px);
  font-size: 25px;
  background-color: #00000040;
  border-radius: .5em;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  display: none;
}

.grid-item:hover .add-curation-item,
.grid-item:hover .pin-image {
    display: block;
}

.grid-item .add-curation-item:hover,
.grid-item .pin-image:hover{
    background-color: #00000070;
}
.add-curation-item {
  transform: translateX(-55%);
}
.pin-image {
  transform: translateX(55%);
}

#add-curation-item {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.8);
  z-index: 9999999999999;
}

#add-curation-item .row {
  position: absolute;
  max-width: 991px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  padding: 40px 25px;
  border-radius: .5em;
  width: 100%;
}

#add-curation-item label {
  display: block;
}

#item-caption {
  min-height: 150px;
}

.material-icons.close-curation {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: #222;
  padding: 8px;
  border-radius: .3em;
  cursor: pointer;
}

/* Image Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4001;
  background-color: rgba(0,0,0,.9);
}
#lightbox .content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
#lightbox .content img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}
#lightbox .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#lightbox .hover-hide {
  z-index: 3;
  opacity: 1;
  visibility: visible;
-webkit-transition: all 200ms;
	   -moz-transition: all 200ms;
	     -o-transition: all 200ms;
}
#lightbox .hidden {
    opacity: 0;
    visibility: hidden;
}
.previous-image,
.next-image {
  position: absolute;
  bottom: 80px;
  left: 20px;
  height: 50px;
  width: 50px;
  background-color: rgba(0,0,0,.75);
  border-radius: 50px;
  text-align: center;
  z-index: 2;
}
.previous-image span,
.next-image span{
  vertical-align: middle;
  line-height: 50px;
}
.next-image {
    bottom: 20px;
}
#lightbox .icons {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 50px;
    height: 50px;
    text-align: center;
}
#lightbox .fa-heart,
#lightbox .error-icon {
    display: none;
    color: #c50505;
    font-size: 40px;
    line-height: 50px;
    vertical-align: middle;
}
#lightbox.error .error-icon,
#lightbox.loading .fa-heart { display: block;  }
#lightbox .close-icon {
  position: absolute;
  left: 20px;
  top: 20px;
  height: 50px;
  width: 50px;
  background-color: rgba(0,0,0,.75);
  border-radius: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
#lightbox .project {
  position: absolute;
  top: 20px;
  text-align: center;
  width: calc(100% - 110px);
  padding: 14px;
  background-color: rgba(0,0,0,.75);
  right: 20px;
  border-radius: 5px;
  min-height: 50px;
  font-weight: 600;
  font-size: 12px;
}
#lightbox .project a {
  font-size: 12px;
  font-weight: 300;
}

#cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 12px 15px;
  background: #000;
  border: 1px solid #222;
  border-radius: 5px;
  display: flex;
  z-index: 10000;
  max-width: 500px;
}
.go-up {
    bottom: 100px !important;
}

#cookie-consent .content {
  width: 100%;
  display: flex;
  align-items: center;
}

#cookie-consent .content p {
  font-size: 12px;
  margin: 0;
}

#cookie-consent .content button {
  margin: 0 0 0 15px;
  font-size: 12px;
  padding: 5px 10px;
  line-height: 14px;
  height: 36px;
  min-width: 98px;
  font-weight: 700;
}

#adult-content {
  position: fixed;
  top: 0;
  background: #070707;
  z-index: 999999;
  left: 0;
  width: 100%;
  bottom: 0;
  right: 0;
}

section#top .material-icons {
    font-size: 14px;
    vertical-align: middle;
}

#user-thumbnail .dropdown-menu {
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    width: 300px;
}
#user-thumbnail .dropdown-menu .dropdown-item {
    color: #ffffff;
    line-height: 40px;
}
#user-thumbnail .dropdown-item-container {
    padding: 10px 0;
}
#user-thumbnail .dropdown-menu .dropdown-item:hover {
    color: rgba(255,255,255,0.75);
    background-color: #222;
}
#user-thumbnail .dropdown-header {
    display: flex;
    align-items: center;
    padding: 16px 25px;
    border-bottom: 1px solid #222;
    background-color: #141414;
}
#user-thumbnail img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #222;
    padding: 5px;
}
#user-thumbnail .dropdown-header img {
    margin-right: 10px;
}
#user-thumbnail .dropdown-header div {
    display: flex;
    flex-direction: column;
    width: calc(100% - 50px);
}
#user-thumbnail .dropdown-header div span {
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
}
#user-thumbnail .dropdown-header div span.email {
    font-size: 12px;
    color: #bbbbbb;
}
#user-thumbnail .container {
    padding-top: 20px;
}
#user-thumbnail .footer-links {
    display: flex;
    justify-content: space-between;
    padding: 16px 25px;
    border-top: 1px solid #222;
    background-color: #141414;
}
#user-thumbnail .footer-links a {
    color: #ee4774;
    font-size: 12px;
    text-decoration: none;
}
#user-thumbnail .footer-links a:hover{
    color:#444;
}
#user-thumbnail .material-icons {
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

main.admin button[type="submit"] {
    position: fixed;
    left: 270px;
    bottom: 0;
    right: 0;
    width: calc(100% - 220px) !important;
    z-index: 9999;
    border-radius: 0 !important;
}

#adult-content .content {
  padding: 30px;
  width: 100%;
  max-width: 600px;
  margin: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
}

.select2-container {
  width: 100% !important;
}
.select2-results__option {
  color: #000 !important;
}

#internal-links {
  padding-left: 13px;
}

/* FAQ */
#faq h4 {
    margin: 3em 0 2em;
    text-align: center;
}
#faq .accordion {
    background: #010101;
    border: 1px solid var(--bs-secondary);
    border-radius: 5px;
}
#faq .accordion .card {
    background: #010101;
}
#faq .card-header {
    
    font-weight: 300 !important;
}
#faq button {
    color: #fff;
    padding: 0;
    padding-right: 30px;
    font-size: 14px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 300 !important;
    display: block;
    width: 100%;
}
.accordion > .card .btn-link::after {
    content: '\e5cf';
    font-family: 'Material Icons';
    position: absolute;
    right: 20px;
    top: 12px;
}
.accordion > .card .btn-link.collapsed::after {
    content: '\e5cc';
}
#faq h5 {
    font-weight: 300 !important;
    display: block;
    width: 100%;
}
#faq a {
    color: var(--bs-primary);
}
#faq a:hover {
    color: #999;
}
.card-body *:not(a) {
    color: #888;
}

.icon-columns .white-box .material-icons {
    color: var(--bs-primary) !important;
    font-size: 62px;
    margin-bottom: 1rem;
}
#reviews .col-lg-3 {
    border: 0 !important;
    padding: 0 15px !important;
}
.review-stars span {
    color: #ebc334;
    font-size: 18px;
    margin-bottom: 20px;
}
#reviews h4 {
    font-size: 16px;
}
#about p, 
#reviews p,
#media p {
    color: #888;
}
#media .row.media {
    align-items: stretch;
}
#media span {
    font-size: 50px;
    transform: translateX(-9px);
}
#media img {
    max-width: 200px;
    max-height: 30px;
    width: auto;
    height: auto;
    margin-top: 6px;
}
.grey-box {
    background: #151515;
    padding: 20px 30px 40px;
    border-radius: .35rem;
    height: 100%;
}
.noborder {
    border: 0 !important;
    padding-bottom: 0 !important;
}

@media screen and (max-width: 767px) {
    #hero {
        padding: 20px 0 !important;
    }
    #bottom-menu { display: flex; }
    .admin #page-title, .admin #hero {
        padding: 40px 15px;
        margin: -30px -15px 0;
    }
    main.admin button[type="submit"] {
        left: 0;
        width: 100% !important;
    }
    #post-title h1 {
      width: 100%;
    }
    .social-share {
      position: relative;
      text-align: left;
      top: 0;
      right: auto;
    }
    .view-all {
      right: 15px;
      top: 0px;
    }
    section#side {
      width: 100%;
      background-color: #070707;
      padding: 0 15px;
      border-bottom: 1px solid #222;
    }
    body.menu-open section#side {
      bottom: 0;
    }
    body:not(.menu-open) section#side {
      bottom: auto;
      height: auto;
    }
    section#side #side-menu {
        display: none;
        margin-top: 30px;
    }
    body.menu-open #close-menu,
    body:not(.menu-open) #open-menu{
      position: fixed;
      top: 28px;
      left: 15px;
      display: block;
      cursor: pointer;
    }
    section#top {
        top: 0;
        bottom: auto;
        width: 87px;
        left: auto;
        z-index: 1000;
        /* display: none; */
        background-color: #070707;
        right: 0;
        border: 0;
    }
    section#top .container {
        padding-right: 15px;
        padding-left: 0;
    }
    a#logout {
      float: none;
      margin-left: 30px;
    }
    body.menu-open section#side #side-menu { display: block; }
    /*body.menu-open section#top { display: block; }*/
    section#main {
      padding: 108px 15px;
      z-index: 0;
      position: relative;
    }
    .admin footer {
        padding-left: 0;
    }
    .admin #back-to-top {
        bottom: 100px !important;
    }
    body.menu-open { overflow: hidden; }
    h1 { font-size: 24px; }
    h2 { font-size: 20px; }
    h3 { font-size: 18px; }
    h4 { font-size: 16px; }
    #posts-header {
      display: block !important;
    }
    #posts-header form {
      display: block !important;
      margin: 0;
      position: relative;
      height: auto;
    }
    #posts-header input, #posts-header select, #posts-header button, #add-new {
      width: 100%;
      max-width: 100%;
      margin: 0 !important;
    }
    a#add-new {
      margin-top: 10px !important;
    }
    .title {
      width: calc(100% - 120px) !important;
    }
    #posts .grid-item {
        flex-wrap: wrap;
    }
    #posts.issues {
      grid-template-columns: repeat(2, 1fr);
    }
    #posts.issues .title,
    #posts.categories .title,
    #posts.users .title,
    #posts.people .title{
        width: 100%;
        position: relative;
        top: auto;
        right: auto;
    }
    .grid-item .icon {
      float: left;
    }
    #posts.issues .grid-item .admin-icon-links {
      right: 5px;
      left: 5px;
      top: 24px;
    }
    #posts:not(.issues):not(.categories):not(.users):not(.people) .admin-icon-links {
        display: flex;
        gap: 20px;
    }
    #posts .grid-item .admin-icon-links a {
      text-align: center;
    }
    #comments .grid-item .title {
      width: 100%;
      position: relative;
      top: 0;
      right: auto;
    }
    .report-grid {
      grid-template-columns: repeat(1, 1fr);
    }
    #blog-posts .grid-item .image {
      width: 80px;
      min-width: 80px;
    }
    #cookie-consent {
      display: block;
    }
    #cookie-consent .btn {
      width: 100%;
      margin: 0;
    }
    #image-gallery {
        padding: 10px !important;
    }
    #upload-image-form {
        top: 10px;
        left: 10px;
    }
    #search-gallery {
        left: 145px;
        top: 10px;
        width: calc(100% - 195px);
    }
    #image-gallery .close-gallery {
       width: 38px;
        height: 38px;
        position: absolute;
        right: 0;
        vertical-align: middle;
        line-height: 36px;
        top: 10px;
    }
    #gallery-container {
        top: 55px;
        left: 0;
        right: 0px;
        bottom: 55px;
    }
    #load-more {
        bottom: 10px;
        left: 10px;
    }
    #insert-images {
        bottom: 10px;
        right: 10px;
    }
    main.admin button[type="submit"] {
        bottom: 80px;
    }
}
@media (min-width: 768px) {
    section, section#side * {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    #open-menu {
        display: block;
        position: fixed;
        top: 28px;
        left: 320px;
        z-index: 3000;
        cursor: pointer;
    }
    section#side { 
        z-index: 3001; 
        background: #020202;
    }
    #side-menu i {
        font-style: normal;
    }
    section#side i, 
    section#side button:after {
        position: absolute;
    }
    body.collapsed:not(.hover-open) section#side i, 
    body.collapsed:not(.hover-open) section#side button:after {
        left: -300px;
    }
    body.collapsed:not(.hover-open) section#side .card-header + .collapse {
        display: none;
    }
    body.collapsed:not(.hover-open) section#side .card, body.collapsed:not(.hover-open) section#side li a {
        border-color: #020202 !important;
    }
    body section#side { overflow: hidden; }
    body.collapsed:not(.hover-open) section#side {
        width: 80px;
        overflow: hidden;
    }
    body.collapsed:not(.hover-open) section#side img#site-logo { display: none; }
    body.collapsed:not(.hover-open) section#side img.site-logo-collapsed {
        display: block !important;
        width: 78px;
        margin-left: -32px;
        margin-top: 4px;
        margin-bottom: -4px;
    }
    body.collapsed:not(.hover-open) #open-menu {
        left: 140px;
    }
    body.collapsed section#top {
        left: 80px;
    }
    body.collapsed section#main {
        padding: 128px 60px 80px 140px;
    }
    body.collapsed footer {
        padding-left: 100px;
    }
}