.sk-chase {
    width: 22px;
    height: 22px;
    position: absolute;
    right: 0;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 35%;
    height: 35%;
    background-color: #e57692;
    border-radius: 50%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
    100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot {
    80%, 100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    } 100%, 0% {
          transform: scale(1.0);
      }
}


.pulser {
    box-shadow: 0 0 0 0 rgba(228, 115, 144, 1);
    animation: pulse-effect 1s infinite;
}

@keyframes pulse-effect {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(228, 115, 144, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(228, 115, 144, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(228, 115, 144, 0);
    }
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    margin: 0px;
    top: 0;
    left: 0;
    border: 6px solid #E47390;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #E47390 transparent transparent transparent;
}

.lds-ring.primary-ring div {
    border: 6px solid #E47390 !important;
    border-color: #E47390 transparent transparent transparent !important;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.lds-ring-small {
    display: inline-block;
    position: relative;
    margin-left: 10px;
    width: 10px;
    height: 10px;
}

.lds-ring-small div

.lds-ring-small div:nth-child(1)

.lds-ring-small div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring-small div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring-small {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fade-in {
    -webkit-animation: fadein 0.3s linear ;
    animation: fadein 0.3s linear ;
}

.fade-out {
    -webkit-animation: fadeout 0.1s linear forwards;
    animation: fadeout 0.1s linear forwards;
}

.success-checkmark {
    width: 80px;
    height: 115px;
    /*margin: 0 auto;*/
}

.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #e47390;
}

.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;

}

.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: white;
    transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #e47390;
    display: block;
    border-radius: 10px;
    position: absolute;
    z-index: 8;
}

.success-checkmark .check-icon .icon-line.line-tip {
    top: 42px;
    left: -8px;
    height:10px;
    width: 40px;
    transform: rotate(45deg);
    animation: icon-line-tip 1s;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 32px;
    right: -5px;
    height:10px;
    width: 75px;
    transform: rotate(-45deg);
    animation: icon-line-long 1s;
}

.success-checkmark .check-icon .icon-circle {
    top: -32px;
    /*left: -25px;*/
    left: -33px;
    z-index: 8;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 6px solid rgba(228, 115, 144, 1);
    animation: icon-circle-expand 1s;
}

.success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: white;
}

@keyframes icon-circle-expand {
    0% {
        border: 4px solid rgba(228, 115, 144, 0.5);
        width: 80px;
        height: 80px;
        top: -4px;
        left: -4px;
    }

    20% {
        border: 4px solid rgba(228, 115, 144, 0.5);

        width: 80px;
        height: 80px;
        top: -4px;
        left: -4px;
    }

    40% {
        border: 4px solid rgba(228, 115, 144, 0.5);

        width: 80px;
        height: 80px;
        top: -4px;
        left: -4px;
    }

    60% {
        border: 4px solid rgba(228, 115, 144, 0.5);

        width: 80px;
        height: 80px;
        top: -4px;
        left: -4px;
    }

    84% {
        border: 4px solid rgba(228, 115, 144, 0.5);

        width: 80px;
        height: 80px;
        top: -4px;
        left: -4px;
    }

    100% {
        width: 120px;
        height: 120px;
        top: -32px;
        left: -33px;
        border: 6px solid rgba(228, 115, 144, 1);
    }
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -6px;
        top: 37px;
        border-radius: 2px;
        height: 5px;
    }

    75% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }


    100% {
        /*width: 25px;*/
        /*left: 14px;*/
        /*top: 45px;*/
        top: 42px;
        left: -8px;
        width: 40px;
        height:10px;
        border-radius: 10px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 48px;
        border-radius: 2px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    75% {
        width: 55px;
        height:5px;
        right: 0px;
        top: 35px;
    }

    84% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
    100% {
        height:10px;
        width: 75px;
        right: -5px;
        border-radius: 10px;
        top: 32px;
    }
}

@-webkit-keyframes fadein {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

@-webkit-keyframes fadeout {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

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

.ui-autocomplete{
    position: absolute;
    background: #FFF;
    border: solid 1px #DDDDDD;
    float: left;
    list-style: none;
    margin: 0;
    padding: 2px;
}

.ui-autocomplete .ui-menu-item {
    clear: left;
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
}

.ui-autocomplete .ui-menu-item a {
    display: block;
    line-height: 1.5;
    padding: 0.2em 0.4em;
    text-decoration: none;
    color: black;
    font-family: Helvetica,Arial,sans-serif;
}

#homepage #banner .banner-content .jobs-suggestion a.home-category:focus span {
    /*color:white !important;*/
    /*box-shadow:   0 0 8px 1px #fff;*/
    /*transform: scale(1.1)*/

}

/* for: floating labels */
.input-group.floating-label {
    position: relative;
    margin-bottom: 30px;
  }
  
  .floating-label input {
    font-size: 18px;
    padding: 0 5px 0 5px;
    display: block;
    width: 100%;
    color:#495057;
    border: none;
    border-bottom: 1px solid #dfdfdf;
  }
  
  .floating-label input:focus {
    outline: none;
  }
  
  .floating-label label {
    color: #999;
    font-size: 16px;
    position: absolute;
    pointer-events: none;
    left: 5px;
    margin:0;
    top: 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
  }
  
  .floating-label input:focus ~ label,
  .floating-label input:not(:placeholder-shown) ~ label {
    top: -18px;
    font-size: 14px;
    color: #e47390;
  }
  
/* for: custom radio-button */

.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  .radio-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .radio-container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  .radio-container input:checked ~ .checkmark {
    background-color: #e47390;
  }
  
  .radio-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .radio-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  .radio-container .checkmark:after {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
  }
