html{
    height: 100%;
}


.iti{
    width: 100%;
}

#floating-panel {
  position: absolute;
  top: 50%;
  z-index: 5;
  background-color: #fff;
  padding: 5px;
  border: 1px solid #999;
  text-align: center;
  font-family: 'Roboto','sans-serif';
  line-height: 30px;
  padding-left: 10px;
}

.link:hover {
  color: blue;
}

.title-size{
font-size: 1.75rem;
}

.font-size-large{
font-size: large !important;
font-weight: bold;
}

.font-size-medium{
    font-size: medium !important;
}

.font-size-larger{
    font-size: larger !important;
}

.font-size-x-large{
    font-size: x-large !important;
}

.font-size-xx-large{
font-size: xx-large !important;
}

.font-size-x-small{
    font-size: x-small !important;
}

.card{
    border-radius: 12px !important;
    box-shadow: unset !important;
}

.card .card-content{
    padding: 16px !important;
}

.row{
    margin-bottom: 8px !important; 
}

.align-self-center{
    align-self: center !important;
}

.color-primary {
    color: #514e7d !important;
}

.background-color-primary{
    background-color: #514e7d !important;
    color: #FFFFFF !important;
}

.display-none {
    display: none !important;
}

.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 2s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


.transition {
    position:absolute;
    height:100%;
    width:30%;
    background:#d6d6d6;
    transform: skewX(-5deg) translateX(-50px);
    transition:2s all ease-in-out;
    -webkit-transition:2s all ease-in-out;
  }
  
  .content {
    position:relative;
    padding:200px 0 0 200px;
    color:#000;
    z-index:10;
    height:300px;
  }
  
  .cta {
    outline:none;
    border:none;
    text-decoration:none;
    text-transform:uppercase;
    background:#202020;
    color:#eaeaea;
    box-sizing:border-box;
    margin-top:20px;
    padding:10px 40px;
  }
  
  .anim-trans {
    animation: anim 4s ease-in-out;
    }
  
  @keyframes anim{
       0% { }
       20%  { z-index:11;\transform: skewX(5deg) translateX(-100%); }
       40%   { transform: skewX(0deg) translateX(0);
   width:100%; z-index:11; box-shadow: 10px 10px 5px #eaeaea;}
       60%   { transform: skewX(3deg) translateX(0);
   width:100%;z-index:11; box-shadow: 10px 10px 5px #eaeaea;}
       80%   { transform: skewX(1deg) translateX(-100%);
   width:60%;z-index:11; box-shadow: 10px 10px 5px #eaeaea;}
       100%   { transform: skewX(-5deg) translateX(-50px);
   width:30%;z-index:1; box-shadow: none;}
  }

@media screen and (min-width: 768px) {
    .form-padding {
        padding-right: 20%;
        padding-left: 20%;
    }
}

.required-shake {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: shake 0.5s;
  }
  
  @keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }

.border-top-primary{
    border-top: 16px solid #514e7d !important;
}

.border-top-step{
    background-color:#514e7d;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: white;
}

.text-transform-capitalize{
    text-transform: capitalize;
}