/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

 *,
*::after,
*::before {
	box-sizing: border-box;
}
:root {
  font-size: 15px;
  --background-color: #f5f4f4;
  --text-color: #353535;

  --color-white: #f5f4f4;
  --color-dark: #353535;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  font-size: 1em;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.4;
  /* Smoothing */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;

  height: -webkit-fill-available;
}

[data-theme="dark"] {
  --background-color: #353535;
  --text-color: #f5f4f4;

  --color-white: #353535;
  --color-dark: #f5f4f4;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  /* overflow: hidden; */
  /* Allows you to scroll below the viewport; default value is visible */
  overflow-y: scroll;
   
  /* To smooth any scrolling behavior */
  -webkit-overflow-scrolling: touch;

  /* transition: 0.2s all; */

  background-color: var(--background-color);
  color: var(--text-color);
  
  min-height: 100vh;
  min-height: -webkit-fill-available;
}


/* LOAD MASK SPIN */
.loadmask{
    z-index:100;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    zoom:1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter:alpha(opacity=50);
    -moz-opacity:.5;
    -khtml-opacity:.5;
    opacity:.5;
    background-color:#CCC
}
.loadmask-msg{
    z-index:20001;
    position:absolute;
    top:0;
    left:0;
    border:1px solid #6593cf;
    background:#c3daf9;
    padding:2px;
    line-height:1
}
.loadmask-msg div{
    padding:5px 10px 5px 25px;
    background:#fbfbfb url("data:image/gif;base64,R0lGODlhFAAUAPMIAIeHhz8/P1dXVycnJ8/Pz7e3t5+fn29vb////wAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFBwAIACwAAAAAFAAUAEAEUxDJSatFxtwaggWAdIyHJAhXoRYSQUhDPGx0TbmujahbXGWZWqdDAYEsp5NupLPkdDwE7oXwWVasimzWrAE1tKFHErQRK8eL8mMUlRBJVI307uoiACH5BAUHAAgALAEAAQASABIAAAROEMkpS6E4W5upMdUmEQT2feFIltMJYivbvhnZ3R0A4NMwIDodz+cL7nDEn5CH8DGZh8MtEMBEoxkqlXKVIgQCibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpjaE4W5spANUmFQX2feFIltMJYivbvhnZ3d1x4BNBIDodz+cL7nDEn5CH8DGZAsFtMMBEoxkqlXKVIgIBibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpAaA4W5vpOdUmGQb2feFIltMJYivbvhnZ3Z0g4FNRIDodz+cL7nDEn5CH8DGZgcCNQMBEoxkqlXKVIgYDibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpz6E4W5upENUmAQD2feFIltMJYivbvhnZ3V0Q4JNhIDodz+cL7nDEn5CH8DGZg8GtUMBEoxkqlXKVIggEibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkphaA4W5tpCNUmHQf2feFIltMJYivbvhnZ3d0w4BMAIDodz+cL7nDEn5CH8DGZBMLNYMBEoxkqlXKVIgoFibbK9YLBYvLtHH5K0J0IACH5BAUHAAgALAEAAQASABIAAAROEMkpQ6A4W5vpGNUmCQL2feFIltMJYivbvhnZ3R1B4NNxIDodz+cL7nDEn5CH8DGZhcINAMBEoxkqlXKVIgwGibbK9YLBYvLtHH5K0J0IACH5BAUHAAcALAEAAQASABIAAANCeLo6wzA6FxkhbaoQ4L3ZxnXLh0EjWZ4RV71VUcCLIByyTNt2PsO8m452sBGJBsNxkUwuD03lAQBASqnUJ7aq5UYSADs=") no-repeat 2px 2px;
    line-height:16px;
    border:1px solid #a3bad9;
    color:#222;
    font:normal 11px tahoma, arial, helvetica, sans-serif;
    cursor:wait
}
.masked{
    overflow:hidden!important
}
.masked-relative{
    position:relative!important
}
.masked-hidden{
    visibility:hidden!important
}

.vertical-center {
    display: -ms-flexbox;
    display: flex;

    -ms-flex-pack: center;
    justify-content: center;

    -ms-flex-align: center;
    align-items: center;
}


/* Nightmode Checkbox toggler */
.checkbox-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  position: fixed;
    top: 0;
    right: 0;
    z-index: 5;
}

.custom-checkbox {
  position: relative;
  display: inline-block;
  width: 190px;
  height: 90px;
}
.custom-checkbox input#status {
  display:none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: 0;
  cursor: pointer;
}
.custom-checkbox input#status + label {
  height: 100%;
  width: 100%;
}
.custom-checkbox input#status + label > .status-switch {
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #242424;
  color: #f5f4f4;
  -webkit-transition: .4s;
  transition: .4s;
  padding: 3px;
  border-radius: 45px;
}
.custom-checkbox input#status + label > .status-switch:before, 
.custom-checkbox input#status + label > .status-switch:after {
  border-radius: 50px;
  height: calc(100% - 6px);
  width: calc(50% - 4px);
  display: flex;
  align-items: center;
  position: absolute;
  justify-content: center;
  -webkit-transition: .4s;
  transition: .4s;
  text-transform: uppercase;
  font-family: "Space Grotesk";
  font-weight: bold;
}
.custom-checkbox input#status + label > .status-switch:before {
  background-color: #f5f4f4;
  color: #242424;
  left: 3px;
  z-index: 10;
  content: attr(data-unchecked);
}
.custom-checkbox input#status + label > .status-switch:after {
  right: 0;
  content: attr(data-checked);
}

.custom-checkbox input#status:checked + label > .status-switch {
  background-color: #f5f4f4;
  color: #242424;
}
.custom-checkbox input#status:checked + label > .status-switch:after {
  left: 0;
  content: attr(data-unchecked);
}
.custom-checkbox input#status:checked + label > .status-switch:before {
  color: #f5f4f4;
  background-color: #242424;
  left: 50%;
  content: attr(data-checked);
}


/* Logo wrapper */
.cd-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 950px;
  margin: 0 auto;
}

.logo-holder {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 120px;
}

.logo {
  position: relative;
  top: 0;
  left: 0;
  max-width: 100%;
  height: auto;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.logo.opacity {
  opacity: 0.7;
}

.logo-svg {
  position: absolute;
}

.banner {
  /* transform: translateY(-150px); */
  position: absolute;
  top: calc(65% + 60px);
  left: 0;
  right: 0;;
  z-index: 3;
}

.intro {
  text-transform: uppercase;
  color: #989898;
  font-size: 22px;
  line-height: 120%;
  font-weight: 500;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  margin-bottom: 0;
}


.content {
	perspective: 1000px;
	display: grid;
	width: 100%;
	/* height: 100vh; */
	position: relative;
	justify-content: center;
	align-items: center;
	justify-items: center;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mobile-phone {
	will-change: transform;
  /* height: 100%; */
  grid-area: 1 / 1 / 2 / 2;
}


article {
  padding: 15px;
  margin-top: 60px;
  margin-bottom: 120px;
}

.mobile-phone {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  min-width: 0;
  max-width: 414px;
  max-height: 736px;
  word-wrap: break-word;
  background-color: #E9E9E9;
  /* background-clip: border-box; */
  background-clip: padding-box;
  overflow: hidden;
  border-radius: 4.2rem;
  border-top: 2px solid rgba(255, 255, 255, .4);
  border-right: 2px solid rgba(255, 255, 255, .4);
  box-shadow: 4px -7px 11px 0 rgba(255,255,255,0.41), 26px -21px 20px 0 rgba(255,255,255,0.62), -2px 4px 14px 0 rgba(0,0,0,0.13), -9px 17px 46px 0 rgba(0,0,0,0.08), -7px 33px 37px 0 rgba(0,0,0,0.09), -54px 43px 58px 0 rgba(0,0,0,0.20), inset 0 0 3px 0 #FFFFFF;
  transform-style: preserve-3d;
}


.mobile-phone:hover {
  box-shadow: 4px -7px 11px 0 rgba(255,255,255,0.41), 26px -21px 20px 0 rgba(255,255,255,0.62), -2px 4px 14px 0 rgba(0,0,0,0.00), -29px 33px 46px 0 rgba(0,0,0,0.00), -34px 37px 37px 0 rgba(0,0,0,0.01), -76px 61px 58px 0 rgba(0,0,0,0.15), inset 0 0 3px 0 #FFFFFF;
}


/* .mobile-phone * {
	pointer-events: none;
} */

.wallpaper {
  border-radius: 4.2rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.toolbar {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;

  position: absolute;
  top: 30;
  left: 0;
  right: 0;
  transform: translateZ(20px)

}

.clock {
  display: flex;
  flex-wrap: nowrap;
  color: #fff;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 90px;
	/* font-size: clamp(60px, 12vw, 90px); */
  font-weight: lighter;
}

.unit {
  /* font-size: 200px; */
  display: inline-flex;
}

.date {
  color: #fff;
  text-transform: uppercase;
  font-family: "Space Grotesk";
  font-size: 14px;
  /* font-size: clamp(12px, 13px, 16px); */
  transform: translateY(-20px);
}

.phone-footer {
  position: absolute;
  left: 55px;
  bottom: 50px;
  right: 55px;
  transform: translateZ(20px)
}


.phone-footer__element {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  font-family: "Space Grotesk";
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;;
  text-transform: uppercase;
}

.line-seperator {
  border-bottom: 1px solid white;
}

.border-right {
  position: relative;
  /* border-right: 1px solid white; */
}

.border-right::after {
  content: " ";
  position: absolute;
  right: 0;
  height: 70%;
  width: 1px;
  background-color: white;
}

.border-right.top::after { 
  top: 0;
}

.border-right.bottom::after {
  bottom: 0;
}

.border-right.border-image::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -19px;
  width: 37px;
  height: 37px;
  background-image: url(../img/general/bg-x.svg);
  background-color: transparent;
  transform: rotate(45deg);
  z-index: 1;
  background-repeat: no-repeat;
}

.wallpaper__logo {
  max-width: 86px;
  height: auto;
}

.volume {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
}

.volum__counter {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  font-size: 12px;
}

.volum__counter::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  border: 1px solid white;
  border-radius: 50%;
  top: -3px;
  left: -4px;

}


.utility-links {
  justify-content: center;
  margin: 70px auto;
  flex-wrap: nowrap;
}

.utility-links .btn {
  background-color: #fff;
  font-weight: bold;
  font-family: "Space Grotesk";
  text-transform: uppercase;
  border-radius: 5em;
  padding: 20px 30px;
  font-size: 18px;
  color: #353535;
  border: 2px solid #fff;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility-links .hover-effect {  
  background-color: #000;
  border-color: #000;
  color: #fff;
  padding: 0.5em 2em;
  transition: padding 0.3s cubic-bezier(0.1, 0, 0.1, 1);;
}
.utility-links .hover-effect::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #f5f4f4;
  transition: 0.3s 0.2s cubic-bezier(0.1, 0, 0.1, 1), left 0.3s cubic-bezier(0.1, 0, 0.1, 1);
  z-index: -1;
}
.utility-links .hover-effect::after {
  content: "";
  display: inline-block;
  /* background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAAAA3NCSVQICAjb4U/gAAAACXBIWXMAADhDAAA4QwEJCS29AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAJ9QTFRF////HiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdHiAdQ+G3kAAAADR0Uk5TABQWHSAoKy01TlNYWVteX2JkaHKAgYKDhIWGh4iJiouMjY6PkK6wteXm5+jr7e709vf5/PLa40cAAADuSURBVHja7ZrJUsJQFAWvYBAlgAwqMoMGCA4Muf//bVBsWbHhFNzuH+iuSt57m2MGAAAAAPdGJcvzLNH5X/Z+ZJeq/KU/P1HURQFNd21Bz8UFry4uKG/UBW1XF3QpoIACCiiggAIKKKCAAgoooICCGyx4qA2/r8f6rKD27zKK1KxauJBdYkuXktmPNiC3lTpgof4ET3vxT2jPv9pjqL+IYj0Gav9bcP97cP9HcH8vuP8zuL8f3D8I7h8G94+C+8f4pf5JcP80uH8W3D8P7v8S+zti/+NW67eW2K8fNDbEfv2oVT7r1Q+bAQAAAOBiDkMotC4hQSVTAAAAAElFTkSuQmCC'); */
  background-image: url('../img/general/arrowfixed.svg');
  position: absolute;
  top: 0;
  left: calc(100% - 4em);
  right: 3em;
  bottom: 0;
  background-size: 1.5em;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 0.3s cubic-bezier(0.1, 0, 0.1, 1),  opacity 0.15s cubic-bezier(0.1, 0, 0.1, 1);
  opacity: 0;
}
.utility-links .hover-effect:hover {
  padding: 0.5em 3.5em 0.5em 2em;
}

.utility-links .hover-effect:hover::after {
  right: 0;
  opacity: 1;
}


.logo-dark {
  display: none;
}

.copyright {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  margin-top: 200px;
}

/* .copyright p { 
  margin-bottom: 0;
} */
.copyright img { 
  width: 200px;
  height: auto;
}


@media (max-width: 1399px) {
}

@media (max-width: 1199px) {
}

@media (max-width: 991px) {
}

@media (max-width: 767px) {

  .checkbox-wrapper {
    padding: 15px;
  }

  .custom-checkbox {
    width: 120px;
    height: 50px;
  }

  .custom-checkbox input#status + label > .status-switch:before, 
  .custom-checkbox input#status + label > .status-switch:after {
    font-size: 12px;
  }

  .intro {
    font-size: 16px;
  }

  /* .clock {
    font-size: 65px;
  }

  .date {
    font-size: 14px;
  } */

  .phone-footer {
    left: 50px;
    bottom: 45px;
    right: 50px;
  }

  .phone-footer__element {
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .utility-links .btn {
    padding: 15px 15px;
    font-size: 16px;
  }

}

@media (max-width: 575px) {
}





[data-theme="dark"] .logo-white {
  display: none;
}

[data-theme="dark"] .logo-dark {
  display: block;
}

[data-theme="dark"] .unit,
[data-theme="dark"] .date,
[data-theme="dark"] .phone-footer__element {
  color: #353535;
}

[data-theme="dark"] .mobile-phone {
  box-shadow: 4px -7px 11px 0 #3B3B3B, 11px -9px 20px 0 #3F3F3F, -2px 4px 14px 0 rgba(0,0,0,0.11), -9px 17px 46px 0 rgba(0,0,0,0.02), -7px 33px 37px 0 rgba(0,0,0,0.33), -54px 43px 58px 0 rgba(0,0,0,0.39), inset 0 0 2px 0 rgba(255,255,255,0.24);
}

[data-theme="dark"] .mobile-phone:hover {
  box-shadow: -2px 4px 14px 0 rgba(0,0,0,0.11), -9px 17px 46px 0 rgba(0,0,0,0.02), -30px 44px 37px 0 rgba(0,0,0,0.11), -75px 76px 58px 0 rgba(0,0,0,0.19), inset 0 0 2px 0 rgba(255,255,255,0.24);
}


[data-theme="dark"] .volum__counter::after {
  border: 1px solid #353535;
}

[data-theme="dark"] .volum__counter {
  border-color: #353535;
}

[data-theme="dark"] .border-right::after {
  background-color:  #353535;
}

[data-theme="dark"] .utility-links .btn {  
  background-color: #000;
  border-color: #000;
  color: #fff;
}

[data-theme="dark"] .utility-links .hover-effect {  
  border-color: #fff;
  background-color: #fff;
  color: #000;
}


[data-theme="dark"] .line-seperator {
  border-bottom-color: #353535;
}

[data-theme="dark"] .border-right.border-image::before {
  background-image: url(../img/general/bg-x-dark.svg);
}


/* Smooth scroll */
/*! locomotive-scroll v4.1.1 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden; }

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.has-scroll-smooth body {
  overflow: hidden; }

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh; }

[data-scroll-direction="horizontal"] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap; }

[data-scroll-direction="horizontal"] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%; }

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0; }
  .c-scrollbar:hover {
    transform: scaleX(1.45); }
  .c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
    opacity: 1; }
  [data-scroll-direction="horizontal"] .c-scrollbar {
    width: 100%;
    height: 10px;
    top: auto;
    bottom: 0;
    transform: scaleY(1); }
    [data-scroll-direction="horizontal"] .c-scrollbar:hover {
      transform: scaleY(1.3); }

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab; }
  .has-scroll-dragging .c-scrollbar_thumb {
    cursor: -webkit-grabbing;
    cursor: grabbing; }
  [data-scroll-direction="horizontal"] .c-scrollbar_thumb {
    right: auto;
    bottom: 0; }

    

/* Recommended styles for Splitting */
.splitting .word,
.splitting .char {
  display: inline-block;
}

/* Psuedo-element chars */
.splitting .char {
  position: relative;
}

/**
 * Populate the psuedo elements with the character to allow for expanded effects
 * Set to `display: none` by default; just add `display: block` when you want
 * to use the psuedo elements
 */
.splitting .char::before,
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  user-select: none;
}




/* Loading */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  /* border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite; */

  background-image: url(../img/general/svglogofull.svg);


  z-index: 1001;
}

  /* #loader:before {
      content: "";
      position: absolute;
      top: 5px;
      left: 5px;
      right: 5px;
      bottom: 5px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #e74c3c;

      -webkit-animation: spin 3s linear infinite;
      animation: spin 3s linear infinite; 
  }

  #loader:after {
      content: "";
      position: absolute;
      top: 15px;
      left: 15px;
      right: 15px;
      bottom: 15px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #f9c922;

      -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite; 
  } */

  @-webkit-keyframes spin {
      0%   { 
          -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
          -ms-transform: rotate(0deg);  /* IE 9 */
          transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
      }
      100% {
          -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
          -ms-transform: rotate(360deg);  /* IE 9 */
          transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
      }
  }
  @keyframes spin {
      0%   { 
          -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
          -ms-transform: rotate(0deg);  /* IE 9 */
          transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
      }
      100% {
          -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
          -ms-transform: rotate(360deg);  /* IE 9 */
          transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
      }
  }

  #loader-wrapper .loader-section {
      position: fixed;
      top: 0;
      width: 51%;
      height: 100%;
      background: #f5f4f4;
      z-index: 1000;
      -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
      -ms-transform: translateX(0);  /* IE 9 */
      transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
  }

  #loader-wrapper .loader-section.section-left {
      left: 0;
  }

  #loader-wrapper .loader-section.section-right {
      right: 0;
  }

  /* Loaded */
  .loaded #loader-wrapper .loader-section.section-left {
      -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
          -ms-transform: translateX(-100%);  /* IE 9 */
              transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

      -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
              transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  }

  .loaded #loader-wrapper .loader-section.section-right {
      -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
          -ms-transform: translateX(100%);  /* IE 9 */
              transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

      -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
      transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  }
  
  .loaded #loader {
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;  
              transition: all 0.3s ease-out;
  }
  .loaded #loader-wrapper {
      visibility: hidden;

      -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
          -ms-transform: translateY(-100%);  /* IE 9 */
              transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

      -webkit-transition: all 0.3s 1s ease-out;  
              transition: all 0.3s 1s ease-out;
  }