@-webkit-keyframes welcome-animation {
  0%   {width: 50%;}
  70%  {width: 100%;}
  100% {width: 50%;}
}
@-moz-keyframes welcome-animation {
  0%   {width: 50%;}
  70%  {width: 100%;}
  100% {width: 50%;}
}
@-o-keyframes welcome-animation {
  0%   {width: 50%;}
  70%  {width: 100%;}
  100% {width: 50%;}
}
@keyframes welcome-animation {
  0%   {width: 50%;}
  70%  {width: 100%;}
  100% {width: 50%;}
}
.resize-drag {
  background-color: transparent;
  color: white;
  font-size: 20px;
  font-family: sans-serif;
  border-radius: 0;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  touch-action: none;
  opacity: 0;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999999999999999999;
  border-right: 3px solid #c20522;
  height: 100%;
  width: 50%;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.resize-drag-container{
    overflow: hidden;
    height: 100%;
    position: relative;
}
.resize-drag.show{
  opacity: 1;
  animation-name: welcome-animation;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: none;
  animation-delay: 1s;
}
.resize-arrows{
    width: 30px;
    height: 30px;
    position: absolute;
    right: -29px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    z-index: 2;
    border: 3px solid #c20522;
}
.resize-arrows svg{}
.resize-arrows svg path{
    fill: #c20522;
}
.resize-drag img{
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.image-background{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.image-background .text{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-decoration: none !important;
}
.image-background a:hover{text-decoration: none;}
.image-background a:hover .title{text-decoration: none;}
.image-background a:hover .check{text-decoration: none;}
.image-background a .check:hover{text-decoration: none;background: #fff;color: #c20522;text-shadow: 0px 1px 1px #000000;}
.image-background .text-container{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.image-background .text span{
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 40px;
    color: #fff;
    text-shadow: 0px 3px 4px #000000;
}
.image-background .text .title{
    text-decoration: none;
}
.image-background .text .check{
    background: #c20522;
    border: 3px solid #c20522;
    padding: 30px;
    width: auto;
    display: table;
    margin: auto;
    text-decoration: none;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}
.image-background .text a{
    text-align: center;
    font-size: 30px;
    background: #c20522;
    color: #fff;
    padding: 30px;
    border: 2px solid #c20522;
    display: table;
    margin: auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}