@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Nunito:800i&display=swap');

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
}

* {
  margin : 0;
  padding : 0;
  box-sizing: inherit;
}

.main-container {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
	background-image: linear-gradient(315deg, #cdebff 50%, #fffdde 50%);
}

.bg-content{
  width: 100%;
  height: 100%;
  position: relative;
  overflow:hidden;
}
.split-screen{
  position: relative;
  display: inline-block;
  height: 100%;
  min-height: 100vh;
  width: 50%;
  margin : 0;
  padding: 0;
  -webkit-transform:skew(315deg);
	-moz-transform:skew(315deg);
	-o-transform:skew(315deg);
	transform:skew(315deg);
}
#screenLeft{
  background: #fffdde;
  float: left;
}

#screenLeft::before{
  content:'';
  position: absolute;
  left: -500%;
  display: inline-block;
  float: left;
  height: 100vh;
  width: 500%;
  background : #fffdde;
}

#screenRight{
  background: #cdebff;
  float: right;
}

#screenRight::before{
  content:'';
  position: absolute;
  right: -500%;
  display: inline-block;
  float: right;
  height: 100vh;
  width: 500%;
  background : #cdebff;
}

.wrapper {
  width: 100%;
  max-width: 260px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.link-txt span {
  color: #000;
  font-size: 18px;
}

.left-txt {
  text-align: left;
}

.right-txt {
  text-align: right;
}

.switch {
  position: relative;
  width: 100%;
  font-family: verdana;
  display: flex;
  justify-content: center;
  align-items: center;
}
  .switch:before {
    content: '  ';
    position: absolute;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 55px;
    background: #0b4a72;
    border-radius: 99em;
  }
  .switch__label {
    width: 30%;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: color 200ms ease-out;
  }
  .switch__label:hover {
      color: white;
  }
  .switch__label>* {
    position: relative;
    z-index: 9;
  }
  .switch__label img {
    width: 100%;
}
  .switch__label i {
    color: #999;
    font-size: 24px;
}
  .switch__indicator {
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 50%;
    transition: transform 600ms cubic-bezier(.02,.94,.09,.97),
                background 300ms cubic-bezier(.17,.67,.14,1.03);
    transform: translate3d(5.6rem,0,0);
    box-shadow: 0 1px 8px rgba(0,0,0,.3);
  }

  input#one:checked ~ .switch__indicator {
    background: #d7f5ff;
    transform: translate3d(1rem,0,0);
  }
  input#two:checked ~ .switch__indicator {
    background: #fff;
    transform: translate3d(5.6rem,0,0);
  }
  input#three:checked ~ .switch__indicator {
    background: #fff;
    transform: translate3d(10.4rem,0,0);
  }
  
  input[type="radio"]:not(:checked),
  input[type="radio"]:checked {
    display: none;
  }

@media screen and (max-width: 480px){
	.wrapper:before {
		position: relative;
		left: 0;
		top: 0;
	}
	.wrapper:after {
		position: relative;
		top: auto;
    	bottom: 0;
	}
}