/* This file belongs to 11thamb.com */

/* [0] Import others [0] */
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700');

/* [1] Standard Style [1] */
ul, li, h1, h2, h3, h4, h5, h6, p, form {
  margin: 0px;
  padding: 0px;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* [2] General Style [2] */
body, html {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  transition: 0.8s cubic-bezier(0.42, 0, 0, 0.99);
  font-family: 'Source Sans Pro', sans-serif;
}

.container {
  width: 100%;
  height: 100%;
}

/* [2.1] Left Container [2.1] */
.container .left-container {
  width: 50%;
  height: 100%;
  float: left;
  transition: 0.8s cubic-bezier(0.42, 0, 0, 0.99);
  position: relative;
  background-color: #FFFFFF;
}

.container .left-container.expand-container {
  width: 100%;
  background: url('../images/expand.jpg') no-repeat center center /cover;
}

.container .left-container h3.title {
  color: #202020;
  font-size: 25px;
  font-weight: 300;
  position: absolute;
  top: 20px;
  left: 20px;
  text-transform: uppercase;
}

.container .left-container .container-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container .left-container .container-content .content-wrap .content-welcomeblock {
  margin-bottom: 40px;
}

.container .left-container .container-content .content-wrap .content-welcomeblock h3.welcome-maintitle {
  color: #202020;
  font-size: 25px;
  font-weight: 300;
  text-align: center;
}

.container .left-container .container-content .content-wrap .content-welcomeblock h3.welcome-secondtitle {
  color: #202020;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

.container .left-container .container-content .content-wrap .content-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container .left-container .container-content .content-wrap .content-form form.loginform {

}

.container .left-container .container-content .content-wrap .content-form form.loginform input {
  width: 300px;
  height: auto;
  padding: 8px 10px;
  outline: none;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #FFFFFF;
  border: 1px solid rgba(32, 32, 32, 0.3);
}

.container .left-container .container-content .content-wrap .content-form form.loginform input[type="password"] {
  margin: 5px 0px;
}

.container .left-container .container-content .content-wrap .content-form form.loginform input[type="submit"] {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #202020;
}

.container .left-container .container-content .content-wrap .errormessage-wrap {
  margin-top: 40px;
  background-color: #62121b;
  color: #FFFFFF;
  padding: 8px 10px;
}

.container .left-container .links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  color: #202020;
  transform: translateX(-50%);
}

.container .left-container .links a {
  color: #62121b;
}

/* [2.1.1] Left Container [2.1.1] */
.container .make-fullscreen-wrap {
  width: 40px;
  height: 40px;
  background-color: #62121b;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #FFFFFF;
  transform: translate(-50%, -50%);
  transition: 0.8s cubic-bezier(0.42, 0, 0, 0.99);
}

.container .make-fullscreen-wrap:hover {
  background-color: #202020;
}

.container .make-fullscreen-wrap.change-button {
  left: calc(100% - 40px);
}

.container .make-fullscreen-wrap .make-fullscreen {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  transition: 0.8s cubic-bezier(0.42, 0, 0, 0.99);
}

.container .make-fullscreen-wrap .make-fullscreen i.icon {
  color: #FFFFFF;
}

.container .make-fullscreen-wrap .make-fullscreen i.icon.icon-left {
  display: none;
  margin-left: -3px;
}

/* [2.2] Right Container [2.2] */
.container .right-container {
  width: 50%;
  height: 100%;
  float: right;
  right: 0%;
  position: relative;
  transition: 0.8s cubic-bezier(0.42, 0, 0, 0.99);
  background-color: #62121b;
}

.container .right-container.collapse-container {
  width: 0%;
}

.container .right-container .slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
}

.container .right-container .slider .slider_img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}

.container .right-container .slider .item1 {
  width: 100%;
  height: 100%;
  background: url('../images/item1.jpg') no-repeat center center /cover;
  animation: item1 infinite 2000ms;
  -moz-animation: item1 infinite 20000ms;
  -ms-animation: item1 infinite 20000ms;
  -o-animation: item1 infinite 20000ms;
  -webkit-animation: item1 infinite 20000ms;
}

@keyframes item1 {
  0% {
    opacity: 1;
  }

  20% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  95% {
    opacity: 0;
  }
}

.container .right-container .slider .item2 {
  width: 100%;
  height: 100%;
  background: url('../images/item2.jpg') no-repeat center center /cover;
  animation: item2 infinite 2000ms;
  -moz-animation: item2 infinite 20000ms;
  -ms-animation: item2 infinite 20000ms;
  -o-animation: item2 infinite 20000ms;
  -webkit-animation: item2 infinite 20000ms;
}

@keyframes item2 {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  45% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.container .right-container .slider .item3 {
  width: 100%;
  height: 100%;
  background: url('../images/item3.jpg') no-repeat center center /cover;
  animation: item3 infinite 2000ms;
  -moz-animation: item3 infinite 20000ms;
  -ms-animation: item3 infinite 20000ms;
  -o-animation: item3 infinite 20000ms;
  -webkit-animation: item3 infinite 20000ms;
}

@keyframes item3 {
  0% {
    opacity: 0;
  }

  45% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  75% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.container .right-container .slider .item4 {
  width: 100%;
  height: 100%;
  background: url('../images/item4.jpg') no-repeat center center /cover;
  animation: item4 infinite 2000ms;
  -moz-animation: item4 infinite 20000ms;
  -ms-animation: item4 infinite 20000ms;
  -o-animation: item4 infinite 20000ms;
  -webkit-animation: item4 infinite 20000ms;
}

@keyframes item4 {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  75% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
