/* Import Open Sans Font fron Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

/* Loader */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

#loader .loading {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#loader .spinner {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    border-radius: 50%;
    border-top: 12px solid #333;
    width: 70px;
    height: 70px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@-webkit-keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.sk-folding-cube {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
    transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
    transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
    transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
    0%,
    10% {
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%,
    100% {
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {

    0%,
    10% {
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%,
    100% {
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

body,
html {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    color: #000;
}

p {
    font-size: 1rem;
    line-height: 1.4;
}

h1,
.h1 {
    font-size: 36px;
    line-height: 42px;
    font-weight: bold;
}

h2,
.h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
}

h3,
.h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
}

h4,
.h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
}

h5 .h5 {
    font-size: 15px;
    line-height: 21px;
    font-weight: bold;
}

h6,
.h6 {
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
}

/* Utility */
a,
a:link,
a:active,
a:focus,
a:focus:active,
a:visited {
    color: #0067B2;
    text-transform: none;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a:hover {
    color:#000;
    text-decoration: none;
}


img {
    max-width: 100%;
    height: auto;
}

.hide {
    display: none !important;
}

.no_scroll {
    overflow: hidden;
    height: 100vh;
    width: 100%;
}


.link-after-button {
    display: block;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    text-decoration: underline;
    color: #999;
}

.mb-4 {
    margin-bottom:30px !important;
}

@media (min-width: 1200px) {
    .mb-xl-0 {
        margin-bottom:0 !important;
    }
		.collapse.dont-collapse-lg {
        display: block;
        height: auto !important;
        visibility: visible;
		}
}

.w-100 {
    width: 100% !important;
}

@media (min-width: 768px) {
    .mb-md-0 {
        margin-bottom: 0!important;
    }
		.collapse.dont-collapse-sm {
        display: block;
        height: auto !important;
        visibility: visible;
		}
}

@media (min-width: 992px) {
    .mb-lg-0, .my-lg-0 {
        margin-bottom: 0!important;
    }
    .w-lg-auto {
        width: auto !important;
    }
		.collapse.dont-collapse-md {
        display: block;
        height: auto !important;
        visibility: visible;
		}
}



@media (min-width:1900px) {
    .ml-xxl-0 {
        margin-left: 0 !important;
    }
    .w-xxl-100 {
        width: 100%;
    }
		.collapse.dont-collapse-xxl {
        display: block;
        height: auto !important;
        visibility: visible;
		}
}

/* Footer */
footer {
    padding-top:1rem;
}

/* Colours */
.blue_text {
    color: #0067B2 !important;
}

.yellow_text {
    color: #FFD618 !important;
}

.red_text {
    color: #F93C3C !important;
}

.light_grey_text {
    color: #f2f2f2;
}

.grey_text {
    color: #ddd;
}

.dark_grey_text {
    color: #999;
}

.black_text {
    color: #000;
}

/* Forms */
.form-group {
    margin-bottom: 1.2rem;
}
.form-group.interested-checkbox:last-child {
    margin: 0;
}

label {
    font-size: 15px;
    line-height: 22px;
    display: block;
    padding-left: 0;
}

.form-control,
input [type="text"],
select,
input[type="email"],
input[type="tel"] {
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
}

.input-group>.custom-select:not(:first-child), .input-group>.form-control:not(:first-child) {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.form-control.plain {
    border: none;
    background-color: #fff;
    border-radius: 0;
}

textarea.form-control {
    height: auto;
}

select {
    background-image: url('/images/dropdown.png');
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
    padding: 0 35px 0 20px;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #CDCDCD;
}

select.form-control:not([size]):not([multiple]) {
    height: 40px;
    line-height: 40px;
    padding: 0 35px 0 20px;
}

select:focus {
    background-color: #f2f2f2;
}

select::-ms-expand {
    display: none;
}

.form-control.blue {
    background-color: #0067B2;
    background-image: url('/images/dropdown_white.png');
    color: #fff;
}

.form-control.white {
    background-color: #fff;
    color: #999;
}

.form-group.inline .form-control {
    width: 100%;
    display: inline-block;
}

@media (min-width:576px) {
    .form-group.inline .form-control {
        width: auto;
    }
}

@media (min-width:1440px) {
    .form-group.inline-xl .form-control {
        width: auto;
    }
}


.form-control.w-auto {
    width: 100%;
}

.form-control.min-width {
    min-width: 330px;
}

@media (min-width:768px) {
    .form-control.w-auto {
        width: 200px;
    }
}

.form-control.auto {
    width: auto;
}

.invalid-feedback, .field-validation-error {
    width: 100%;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #dc3545;
}

/* Buttons */
.btn {
    font-size: 0.875rem;
    font-weight: bold;
    line-height:1rem;
    padding: 11px 15px;
    text-transform: uppercase !important;
    border: none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
}

.btn.btn-danger {
    color: #fff;
}


.btn.btn-default {
    background-color: #f2f2f2;
}

.btn-primary,
a.btn-primary,
.btn-secondary:hover,
a.btn-secondary:hover {
    background-color: #0067B2;
    color: #fff;
}

.btn-primary:hover,
a.btn-primary:hover,
.btn-secondary,
a.btn-secondary,
.btn.btn-danger:hover,
a.btn.btn-danger:hover {
    background-color: #FFD618;
    color: #000;
}

.toggle {
    overflow: hidden;
}

.toggle-group {
    overflow: hidden;
}

.toggle-group .toggle-off,
.toggle-group .toggle-on {
    border-radius: 50px;
}

.lh-40 {
	line-height: 40px;
}

.btn[disabled] {
    cursor: not-allowed !important;
    opacity:0.7 !important;
}

.btn[disabled] .btn-primary:hover {
    background-color:#0067B2 !important;
    color:#fff !important;
    cursor: not-allowed !important;
}

.btn[disabled] .btn-secondary:hover {
    background-color:#FFD618 !important;
    color:#fff !important;
    cursor: not-allowed !important;
}

.btn[disabled] .btn-default:hover {
    background-color:#f2f2f2 !important;
    color:#000 !important;
    cursor: not-allowed !important;
}

.btn i {
    font-size: 1rem !important;
    line-height: 1rem !important;
    width: auto !important;
    height: auto !important;
}

.btn.half-laptop, .btn.half-tablet {
    width: 100%;
}

@media (min-width:1200px) and (max-width:1900px) {
    .btn.half-laptop {
        width: 50%;
    }
}
@media (min-width:1200px) {
    .btn.half-tablet {
        width: 50%;
    }
}

.checkbox label .toggle, .checkbox-inline .toggle {
    margin-left: 0;
    margin-right: 5px;
}

/* Modal */
.modal.show .modal-dialog {
    -webkit-transform: translate(0,50%);
    transform: translate(0,50%);
}

.modal-content {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px; 
    border:none;
    overflow:hidden;
    box-shadow: -3px 3px 0 rgba(0, 0, 0, 0.1);
}

.modal-header {
    background-color: #f2f2f2;
}

.modal-body table tr:first-of-type th, .modal-body table tr:first-of-type td {
    border-top:none;
}

/* Login Content */
.panel {
    height: 100%;
}

.panel_inner {
    overflow-y: scroll;
}
@media (max-width:550px) {
  .image_right {
      height: calc(100vh - 452px);
      overflow: hidden;
  }
  .image_right img {
      object-fit: cover;
      position: absolute;
      height: 100%;
      width: 100%;
  }
}

@media (min-width:992px) {
.image_right,
  .image_right img {
      position: relative;
      z-index: 0;
      height: 100vh;
      width: 100%;
      object-fit: cover; 

  }
}
.current_year {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 1;
    color: #fff;
}

/* Dashboard */
.dashboard {
    position: relative;
    display: block;
}

/* Dashboard Side Nav */
.dashboard__nav {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: -100%;
    -ms-flex:1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 100%;
    width: 100px;
    height: 100vh;
    background-color: #000;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.dashboard__nav-inner {
    max-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100vh;
}

@media (max-height:540px) {
    .dashboard__nav-inner {
        overflow-y: scroll;
    }
}

.dashboard__nav-list {
    max-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
}

.dashboard__nav.active {
    left: 0;
}

@media (min-width:768px) {
    .dashboard__nav {
        position: relative;
        flex: 0 1 10%;
        max-width: 10%;
        left: 0;
    }
}

.dashboard__toggle {
    width: 35px;
    height: 30px;
    position: relative;
    margin: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
  
  .dashboard__toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #0067B2;
    border-radius: 8px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  .dashboard__toggle span:nth-child(1) {
    top: 0px;
  }
  
  .dashboard__toggle span:nth-child(2),.dashboard__toggle span:nth-child(3) {
    top: 12px;
  }

  .dashboard__toggle span:nth-child(3) {
      opacity:0;
  }
  
  .dashboard__toggle span:nth-child(4) {
    top: 25px;
  }
  
  .dashboard__toggle.active span:nth-child(1) {
    top: 12px;
    width: 0%;
    left: 50%;
  }
  
  .dashboard__toggle.active span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .dashboard__toggle.active span:nth-child(3) {
      opacity:1;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .dashboard__toggle.active span:nth-child(4) {
    top: 12px;
    width: 0%;
    left: 50%;
  }


.dashboard__nav-item {
    text-align: center;
    width: 100%;
}

@media (min-width:992px) {
    .dashboard__nav-item {
        flex: 1 1 auto;
    }
}

.dashboard__nav-item.active a {
    background-color: #0067B2;
    text-decoration: none;
}


.dashboard__nav-item a,
.dashboard__nav-item a:visited,
.dashboard__nav-item a:link,
.dashboard__nav-item a:active {
    color: #f2f2f2;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 1rem 0.5rem;
}

.dashboard__nav-item a:hover {
    text-decoration: none;
    background-color: #0067B2;
}

@media (min-width:992px) {
    .dashboard__nav-item a {
        padding: 0;
    }
}

.dashboard__nav i {
    color: #fff;
    display: block;
    margin-bottom: 10px;
    line-height: 26px;
    font-size: 26px;
}

.dashboard__nav-item span {
    font-size: 0.7rem;
    line-height: 0.7rem;
}

@media (min-width:1200px) {
    .dashboard__nav-item span {
        font-size: 0.875rem;
        line-height: 0.875rem;
    }
}

.dashboard__content {
    position: relative;
    flex: 1 1 100%;
    max-width: 100%;
}

@media (min-width:768px) {
    .dashboard__content {
        position: relative;
        flex: 0 1 90%;
        max-width: 90%;
    }

    .dashboard__content.full_dash {
        position: relative;
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Dashboard Header */
.dashboard__content-header {
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 1rem;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1)
}

.dashboard__content-header.active {
    left: 100px;
}

.dashboard__content-header-right,
.dashboard__content-header-left {
    flex: 1 1 100%;
    max-width: 100%;
}

@media (min-width:992px) {
    .dashboard__content-header {
        padding: 2rem;
    }

    .dashboard__content-header-right,
    .dashboard__content-header-left {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

.dashboard__content-header h3,
.dropdown__event select {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: bold;
    background-color: transparent;
    border: none;
}

.dashboard__content-header h3,
.dropdown__location {
    padding-right: 30px;
}

.dropdown__user {
    padding-left: 30px;
    margin-left: auto;
}

.dropdown__event {
    padding-left: 30px;
    margin-left: 0;
    width: 100%;
}

@media (min-width:460px) {
    .dropdown__event {
        margin-left: auto;
        width: auto;
    }
}

@media (min-width:992px) {

    .dropdown__event,
    .dropdown__user {
        margin-left: initial;
    }
		.dashboard__content-header-right .dropdown__user {
        margin-left: 0;
    }
}

.dropdown__event label,
.dropdown__event select {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
    background-color: transparent;
    border: none;
    line-height: 40px;
}

.dropdown__event select {
    width: 100%;
    background-color: #f2f2f2;
    border-bottom: 2px solid #f2f2f2;
    color: #495057;
    font-weight: 400;
}

@media (min-width:460px) {
    .dropdown__event select {
        width: auto;
        border: none;
        background-color: transparent;
        color: #000;
        font-weight: 600;
    }
}


.dropdown__location label,
.dropdown__location select {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
    border: none;
    font-size: 15px;
    line-height: 40px;
}

.dropdown__user .dropdown,
.dropdown__user .dropdown .dropdown-toggle {
    color: #000;
    line-height: 40px;
}

.dropdown__user .dropdown .dropdown-toggle::after {
    display: none;
}

.dropdown-toggle:hover {
    text-decoration:none;
}

.dropdown__location label {
    padding-right: 15px;
    padding-left: 0;
}

@media (max-width:992px) {

    .dropdown__location,
    .dropdown__event {
        border: none !important;
        padding: 0;
    }
}

@media (max-width:1300px) {

    .dashboard__content-header h3,
    .dropdown__event select {
        font-size: 1rem;
        line-height: 1rem;
    }
}

/* Dashboard Inner Content */
.dashboard__content-inner {
    background-color: #ddd;
    height: 100vh;
    overflow-y: scroll;
}

.dashboard__content-inner-pad {
    padding-top: 200px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width:460px) {
    .dashboard__content-inner-pad {
        padding-top: 155px;
    }
}

@media (min-width:992px) {
    .dashboard__content-inner-pad {
        padding-top: 130px;
    }
}


/* Cards */
.card {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    border: none;
    overflow: hidden;
    margin-bottom: 0;
}

.card-header {
    background-color:rgb(0,103,178,0.15);
    padding: 15px;
}

.card-body {
    background-color: #fff;
    padding: 15px;
}

@media (min-width:768px) {
    .card-header {
        padding: 20px 40px;
    }

    .card-body {
        padding: 40px;
    }
    /*.card-body .form-group:last-child, .card-body .diary:last-child .diary-day {
        margin: 0;
    }*/
}

@media (max-width:430px) {
    #diary .card-body {
        background-color: #f2f2f2;
    }
}

/* Countdown */
#countdown h2 {
    font-size: 2.4rem;
    line-height: 2.4rem;
    font-weight: 500;
    display: block;
    padding: 0 10px;
}

#countdown h2 small {
    font-size: 15px;
    line-height: 15px;
    display: block;
    text-transform: uppercase;
}

#countdown h4 {
    font-weight: 500;
}


/* Progress bars */
.chartjs-render-monitor {
    max-width: 150px;
    max-height: 150px;
    margin:0 auto;
}

.progressbar,
.progressbarLg,
.progressbarPerc,
.progressbarInvites {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.circle,
.circleInvites {
    width: 108px;
    height: 108px;
    margin: 0 auto;
    display: block;
    position: relative;
    text-align: center;
}

.circle:after,
.circleInvites:after {
    width: 108px;
    height: 108px;
    content: "";
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 30px;
    left: 30px;
}

.circle canvas,
.circleInvites canvas {
    vertical-align: middle;
    border-radius: 50%;
}

.circle div,
.circleInvites div {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    width: 100%;
    text-align: center;
    line-height: 20px;
    font-size: 20px;

}

/* Circle Large */
.circleLg {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: block;
    position: relative;
    text-align: center;
}

.circleLg:after {
    width: 120px;
    height: 120px;
    content: "";
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 30px;
    left: 30px;
}

.circleLg canvas {
    vertical-align: middle;
    border-radius: 50%;
}

.circleLg div {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    width: 100%;
    text-align: center;
    line-height: 60px;
    font-size: 60px;
}

/* Circle Percentage */
.circlePerc {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: block;
    position: relative;
    text-align: center;
}

.circlePerc:after {
    width: 80px;
    height: 80px;
    content: "";
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 30px;
    left: 30px;
}

.circlePerc canvas {
    vertical-align: middle;
    border-radius: 50%;
}

.circlePerc div {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    width: 100%;
    text-align: center;
    line-height: 40px;
    font-size: 40px;

}

/* Lists */
.list p,
.list p a {
    display: block;
    font-size: 0.875rem;
    line-height: 30px;
    color: #999;
    font-weight: 600;
    text-transform: none;
}

.list p a:hover {
    text-decoration: none;
}

.list i {
    display: inline-block;
    font-size: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
}

/* Carousel */
@media (min-width:430px) {
    .slick-track {
        margin: 0;
    }

    .slide {
        padding: 0 15px;
    }
}

.slick-prev,
.slick-next {
    position: relative;
    left: inherit;
    right: inherit;
    top: inherit;
    display: inline-block;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1rem;
    vertical-align: middle;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
}

.slick-dots {
    visibility: hidden;
    height: 0;
}

.pagingInfo {
    font-size: 1rem;
    line-height: 1rem;
    vertical-align: middle;
}

/* Diary */
.diary-day {
    background-color: #f2f2f2;
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.diary-date-header .date,
.diary-date-header .controls {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
}

.diary-date-header .controls {
    margin-top: 1rem;
}

.diary-date-header .controls .controls__inner {
    margin-left: auto;
}

@media (min-width:500px) {

    .diary-date-header .date,
    .diary-date-header .controls {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: inherit;
        width: auto;
    }

    .diary-date-header .controls {
        margin-top: 0;
    }
}

.diary-column {
    background-color: #fff;
}

.diary-column:focus {
    outline: none;
    border: none;
}

@media (min-width:430px) {
    .diary-day {
        padding: 2rem;
    }
	.diary-day.carousel {
        padding: 2rem 1rem;
	}

    .diary-column {
        background-color: #f2f2f2;
    }
}

.diary-sales-exec-name {
    background-color: #fff;
    padding: 1rem;
    margin: 0;
}

.diary-sales-exec-name i {
    margin-right: 10px;
}

.diary-time-slot-panel {
    background-color: #fff;
    padding: .5rem;
}

.diary-time-slot-panel .collapse {
    background-color: #fff;
    color: #000;
    margin: 0;
}

.diary-time-slot-panel .collapse a {
    color: #000;
    border-bottom: 1px solid #f2f2f2 !important;
}

.diary-time-slot-panel .collapse a:focus,
.diary-time-slot-panel .collapse a:focus,
.diary-time-slot-panel .collapse a:active {
    border-bottom: 1px solid #f2f2f2;
    text-decoration: none;
    color: #000;
    outline: none;
    border: none;
}

.diary-time-slot-panel .collapser {
    cursor: pointer;
}

.diary-time-slot-panel .collapser span,
.diary-time-slot-panel .collapser span {
    font-size: 1rem;
    line-height: 1rem;
}

.diary-time-text {
    font-weight: 600;
    padding-right: 5px;
}

.diary-time-slot-panel .collapser__icon {
    font-size: 1rem;
    line-height: 1rem;
    padding: 1rem;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    background-color: rgba(0, 0, 0, 0.1);
		height: 51px
}

.diary-time-slot-panel .collapser__icon:before {
    font-size: 1rem;
    line-height: 1rem;
    vertical-align: middle;
}

.diary-time-slot-panel .collapser__text {
    padding: 1rem;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.diary-time-slot-panel-unavailable .collapser {
    background-color: #ddd;
    color: #999;
}

.diary-time-slot-panel-available .collapser {
    background-color: #fff;
    color: #000;
}

.diary-time-slot-panel-available a,
.diary-time-slot-panel-unavailable a {
    display: block;
    color: #000;
    padding: 0.875rem;
}

.diary-time-slot-panel-appointed .collapser {
    background-color: #0067B2;
    color: #fff;
    font-size: 1rem;
    line-height: 1rem;
}

.diary-time-slot-panel-appointed a {
    color: #000;
    border-bottom: 1px solid #f2f2f2;
    padding: 0.875rem;
}

.diary-time-slot-panel-appointed a:hover,
.diary-time-slot-panel-appointed a:focus,
.diary-time-slot-panel-appointed a:active,
.diary-time-slot-panel-unavailable a:hover,
.diary-time-slot-panel-unavailable a:focus,
.diary-time-slot-panel-unavailable a:active,
.diary-time-slot-panel-available a:hover,
.diary-time-slot-panel-available a:focus,
.diary-time-slot-panel-available a:active {
    text-decoration: none;
    color: #000;
}

.check_box {
    margin-right: 5px;
}

/* Pagination */
@media (max-width:560px) {
    .pagination button {
        display: none;
    }

    .pagination button:nth-child(1),
    .pagination button:nth-child(2),
    .pagination button:nth-child(3),
    .pagination button:nth-child(4),
    .pagination button:nth-last-of-type(-n+2) {
        display: block;
    }
}

/* Tables */

/*Fake Table*/
    .div-table {
        display: table;
        width: auto;
    }

    .div-table-row {
        display: table-row;
        width: auto;
        clear: both;
    		vertical-align: inherit;
    }

    .div-table-col {
        display: table-cell;
				padding: 10px 10px !important;
    }

    .prospect-window {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 2rem 0;
				position: absolute;
				width: 100%;
			  background: #fff;
    }
.div-table-row.expandableRow {
	display: table-row-group;
}
.div-table-row.customerExpandRow {
    position: relative;
		height: 310px;
}
.prospect-toggle {
	cursor: pointer;
	display: block;
	width: 13px;
}
.prospect-toggle img {
	width: 13px!important;
}


.table-scroll th,
.table-scroll td {
    padding: 10px 10px !important;
}

.table-striped tbody tr:nth-of-type(odd), .table-striped .div-table-row:nth-of-type(odd) {
    background-color: #f2f2f2 !important;
    border:none;
}
.table-striped tbody tr th, .table-striped tbody tr td, .table-striped .div-table-row .div-table-col {
    border:none;
}
.table.stack_deal {
    min-width: 530px;
}
.stack_deal .field-validation-error {
    padding-left: 20px;
}

/* Reveal Discount */
.customer__icon i {
    display:inline-block;
    width: 130px;
    height: 130px;
    padding: 1rem;
    background-color: #f2f2f2;
    box-shadow:-6px 3px 0 rgba(0, 0, 0, 0.3);
    border:8px solid #ddd;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.reveal__wrapper {
    position: relative;
    z-index: 0;
}

.reveal__wrapper #reveal {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: inherit;
}

.reveal__wrapper {
    position: relative;
    z-index: 0;
}

.btn-reveal {
    text-decoration: none;
}

.btn-reveal:hover {
    text-decoration: none;
}

.btn-reveal .btn {
    background-color: gold;
    box-shadow: -3px 3px 0 goldenrod;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-reveal:hover .btn {
    transform: translateY(3px);
    transform: translateX(-3px);
    box-shadow: none;
}

.coin {
    background-color: gold;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    box-shadow: -8px 3px 0 goldenrod;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-reveal:hover .coin {
    transform: translateY(8px);
    transform: translateX(-3px);
    box-shadow: none;
}

.coin__inner {
    background-color: goldenrod;
    width: 160px;
    height: 160px;
    box-shadow: 0 0 20px 3px rgb(0 0 0 / 10%) inset;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.coin i {
    font-size: 6rem;
    vertical-align: middle;
    opacity: 0.95;
    text-shadow: 0 0 6px rgb(0 0 0 / 20%);
}

#reveal.card.active,
#reveal.active .card-body {
    -webkit-animation: 0.5s ease-in 2s 1 normal forwards running close;
    -moz-animation-animation: 0.5s ease-in 2s 1 normal forwards running close;
    -o-animation-animation: 0.5s ease-in 2s 1 normal forwards running close;
    -ms-animation-animation: 0.5s ease-in 2s 1 normal forwards running close;
    animation: 0.5s ease-in 2s 1 normal forwards running close;
}

#reveal h1,
#reveal h2 {
    color: #000;
}

#reveal.active h1 {
    -webkit-animation: 2s ease-in 0.5s 1 normal forwards running translate;
    -moz-animation-animation: 2s ease-in 0.5s 1 normal forwards running translate;
    -o-animation-animation: 2s ease-in 0.5s 1 normal forwards running translate;
    -ms-animation-animation: 2s ease-in 0.5s 1 normal forwards running translate;
    animation: 2s ease-in 0.5s 1 normal forwards running translate;
}

#reveal.active h2 {
    -webkit-animation: 2s ease-in 1s 1 normal forwards running translate;
    -moz-animation-animation: 2s ease-in 1s 1 normal forwards running translate;
    -o-animation-animation: 2s ease-in 1s 1 normal forwards running translate;
    -ms-animation-animation: 2s ease-in 1s 1 normal forwards running translate;
    animation: 2s ease-in 1s 1 normal forwards running translate;
}

#reveal.active .btn-reveal .btn,
#reveal.active .btn-reveal .coin {
    -webkit-animation: 2s ease-in 0s 1 normal forwards running shrink;
    -moz-animation-animation: 2s ease-in 0s 1 normal forwards running shrink;
    -o-animation-animation: 2s ease-in 0s 1 normal forwards running shrink;
    -ms-animation-animation: 2s ease-in 0s 1 normal forwards running shrink;
    animation: 2s ease-in 0s 1 normal forwards running shrink;
}

#revealed .card-body {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
}

#revealed table {
    margin: 2rem auto;
    width: auto;
}

#revealed table tr,
#revealed table tr th,
#revealed table tr td {
    border: none;
}

#revealed table tr th,
#revealed table tr td {
    padding: 1rem;
    vertical-align: middle;
}

#revealed table tr {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

#revealed table tr th {
    text-align: left;
}

#revealed table tr td {
    text-align: right;
}

#revealed table tr.total td {
    font-size: 2rem;
    line-height: 2rem;
}

#revealed.inactive {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

#revealed table tr.inactive  {
    -webkit-transform: translateX(-9999px);
    -moz-transform: translateX(-9999px);
    -o-transform: translateX(-9999px);
    -ms-transform: translateX(-9999px);
    transform: translateX(-9999px);
}

#revealed.active {
    -webkit-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 2s 1 normal forwards running grow;
    -moz-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 2s 1 normal forwards running grow;
    -o-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 2s 1 normal forwards running grow;
    -ms-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 2s 1 normal forwards running grow;
    animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 2s 1 normal forwards running grow;
}

#revealed.active table tr:nth-of-type(1) {
    -webkit-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 2.5s 1 normal forwards running slideIn;
    -moz-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 2.5s 1 normal forwards running slideIn;
    -o-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 2.5s 1 normal forwards running slideIn;
    -ms-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 2.5s 1 normal forwards running slideIn;
    animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 2.5s 1 normal forwards running slideIn;
}

#revealed.active table tr:nth-of-type(2) {
    -webkit-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 3s 1 normal forwards running slideIn;
    -moz-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 3s 1 normal forwards running slideIn;
    -o-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 3s 1 normal forwards running slideIn;
    -ms-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 3s 1 normal forwards running slideIn;
    animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 3s 1 normal forwards running slideIn;
}

#revealed.active table tr:nth-of-type(3) {
    -webkit-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 4s 1 normal forwards running slideIn;
    -moz-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 4s 1 normal forwards running slideIn;
    -o-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 4s 1 normal forwards running slideIn;
    -ms-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 4s 1 normal forwards running slideIn;
    animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 4s 1 normal forwards running slideIn;
}

#revealed.active table tr:nth-of-type(4) {
    -webkit-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 4.5s 1 normal forwards running slideIn;
    -moz-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 4.5s 1 normal forwards running slideIn;
    -o-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 4.5s 1 normal forwards running slideIn;
    -ms-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 4.5s 1 normal forwards running slideIn;
    animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 4.5s 1 normal forwards running slideIn;
}

#revealed.active table tr:nth-of-type(5) {
    -webkit-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 5s 1 normal forwards running slideIn;
    -moz-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 5s 1 normal forwards running slideIn;
    -o-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 5s 1 normal forwards running slideIn;
    -ms-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 5s 1 normal forwards running slideIn;
    animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 5s 1 normal forwards running slideIn;
}

#revealed.active table tr:nth-of-type(6) {
    -webkit-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 5.5s 1 normal forwards running slideIn;
    -moz-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 5.5s 1 normal forwards running slideIn;
    -o-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 5.5s 1 normal forwards running slideIn;
    -ms-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 5.5s 1 normal forwards running slideIn;
    animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 5.5s 1 normal forwards running slideIn;
}

#revealed.active table tr:nth-of-type(7) {
    -webkit-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 6s 1 normal forwards running slideIn;
    -moz-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 6s 1 normal forwards running slideIn;
    -o-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 6s 1 normal forwards running slideIn;
    -ms-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 6s 1 normal forwards running slideIn;
    animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 6s 1 normal forwards running slideIn;
}

#revealed.active table tr:nth-of-type(8) {
    -webkit-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 6.5s 1 normal forwards running slideIn;
    -moz-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 6.5s 1 normal forwards running slideIn;
    -o-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 6.5s 1 normal forwards running slideIn;
    -ms-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 6.5s 1 normal forwards running slideIn;
    animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 6.5s 1 normal forwards running slideIn;
}

#revealed.active table tr:nth-of-type(9) {
    -webkit-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 7s 1 normal forwards running slideIn;
    -moz-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 7s 1 normal forwards running slideIn;
    -o-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 7s 1 normal forwards running slideIn;
    -ms-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 7s 1 normal forwards running slideIn;
    animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 7s 1 normal forwards running slideIn;
}

#revealed.active table tr:nth-of-type(10) {
    -webkit-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 7.5s 1 normal forwards running slideIn;
    -moz-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 7.5s 1 normal forwards running slideIn;
    -o-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 7.5s 1 normal forwards running slideIn;
    -ms-animation-animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 7.5s 1 normal forwards running slideIn;
    animation: 1s cubic-bezier(0.280, 0.840, 0.420, 1) 7.5s 1 normal forwards running slideIn;
}

.discount_star {
    border:2px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0.875rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: ripple 2s linear infinite;
    -moz-animation: ripple 2s linear infinite;
    -ms-animation: ripple 2s linear infinite;
    -o-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}

.timer {
    width: auto;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
}

.tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;*/
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

/* Refine Search */
@media (min-width: 550px) {
#ddlSortBy {
	min-width: 175px;
	}
}
.search-input {
	width: 150px;
}
.search-btn {
	width: 100px;
	margin-left: 1rem;
}
@media (max-width: 370px) {
	.search-input {
    width: 100%;
		margin-bottom: 1rem;
  }
  .search-btn {
    width: 100%;
		margin-left: 0;
  }
	.w-xs-100 {
		width: 100%;
	}
}

@media (max-width: 991px) {
  .refineLabel {
      min-width: 120px;
  }
}
@media (max-width: 430px) {
  .refineGroup {
      flex-direction: column;
			align-items: flex-start!important;
  }
	.refineLabel {
      margin: 1rem 0 .5rem!important;
  }
}

/* Shrink animation */
@keyframes shrink {
    0% {
        opacity: 1;
    }

    100% {
        transform: scaleX(0.00) scaleY(0.00);
    }
}

@-moz-keyframes shrink {
    0% {
        -moz-transform: scaleX(1.00) scaleY(1.00);
    }

    100% {
        -moz-transform: scaleX(0.00) scaleY(0.00);
    }
}

@-webkit-keyframes shrink {
    0% {
        -webkit-transform: scaleX(1.00) scaleY(1.00);
    }

    100% {
        -webkit-transform: scaleX(0.00) scaleY(0.00);
    }
}

@-o-keyframes shrink {
    0% {
        -o-transform: scaleX(1.00) scaleY(1.00);
    }

    100% {
        -o-transform: scaleX(0.00) scaleY(0.00);
    }
}

@-ms-keyframes shrink {
    0% {
        -ms-transform: scaleX(1.00) scaleY(1.00);
    }

    100% {
        -ms-transform: scaleX(0.00) scaleY(0.00);
    }
}


/* Grow Animation */
@keyframes grow {
    0% {
        opacity: 0;
        transform: scaleX(0.00) scaleY(0.00);
    }

    80% {
        opacity: 0.6;
        transform: scaleX(1) scaleY(1);
    }

    90% {
        opacity: 0.9;
        transform: scaleX(1.1) scaleY(1.1);
    }

    100% {
        opacity: 1;
        transform: scaleX(1) scaleY(1);
    }
}

@-moz-keyframes grow {
    0% {
        opacity: 0;
        -moz-transform: scaleX(0.00) scaleY(0.00);
    }

    80% {
        opacity: 0.6;
        -moz-transform: scaleX(1) scaleY(1);
    }

    90% {
        opacity: 0.9;
        -moz-transform: scaleX(1.1) scaleY(1.1);
    }

    100% {
        opacity: 1;
        -moz-transform: scaleX(1) scaleY(1);
    }
}

@-webkit-keyframes grow {
    0% {
        opacity: 0;
        -webkit-transform: scaleX(0.00) scaleY(0.00);
    }

    80% {
        opacity: 0.6;
        -webkit-transform: scaleX(1) scaleY(1);
    }

    90% {
        opacity: 0.9;
        -webkit-transform: scaleX(1.1) scaleY(1.1);
    }

    100% {
        opacity: 1;
        -webkit-transform: scaleX(1) scaleY(1);
    }
}

@-o-keyframes grow {
    0% {
        opacity: 0;
        -o-transform: scaleX(0.00) scaleY(0.00);
    }

    80% {
        opacity: 0.6;
        -o-transform: scaleX(1) scaleY(1);
    }

    90% {
        opacity: 0.9;
        -o-transform: scaleX(1.1) scaleY(1.1);
    }

    100% {
        opacity: 1;
        -o-transform: scaleX(1) scaleY(1);
    }
}

@-ms-keyframes grow {
    0% {
        opacity: 0;
        -ms-transform: scaleX(0.00) scaleY(0.00);
    }

    80% {
        opacity: 0.6;
        -ms-transform: scaleX(1) scaleY(1);
    }

    90% {
        opacity: 0.9;
        -ms-transform: scaleX(1.1) scaleY(1.1);
    }

    100% {
        opacity: 1;
        -ms-transform: scaleX(1) scaleY(1);
    }
}


/* Translate animation */
@keyframes translate {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-9999px);
    }
}

@-moz-keyframes translate {
    0% {
        -moz-transform: translateY(0);
    }

    100% {
        -moz-transform: translateY(-9999px);
    }
}

@-webkit-keyframes translate {
    0% {
        -webkit-transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-9999px);
    }
}

@-o-keyframes translate {
    0% {
        -o-transform: translateY(0);
    }

    100% {
        -o-transform: translateY(-9999px);
    }
}

@-ms-keyframes translate {
    0% {
        -ms-transform: translateY(0);
    }

    100% {
        -ms-transform: translateY(-9999px);
    }
}

/* Background Color animation */
@keyframes close {
    0% {
        transform: scale(100%, 100%);
        background-color: rgba(255, 255, 255, 1);
        margin: 0 auto;
    }

    100% {
        transform: scale(0, 0);
        background-color: rgba(255, 255, 255, 0);
        margin: 0 auto;
    }
}

@-moz-keyframes close {
    0% {
        -moz-transform: scale(100%, 100%);
        background-color: rgba(255, 255, 255, 1);
        margin: 0 auto;
    }

    100% {
        -moz-transform: scale(0, 0);
        background-color: rgba(255, 255, 255, 0);
        margin: 0 auto;
    }
}

@-webkit-keyframes close {
    0% {
        -webkit-transform: scale(100%, 100%);
        background-color: rgba(255, 255, 255, 1);
        margin: 0 auto;
    }

    100% {
        -webkit-transform: scale(0, 0);
        background-color: rgba(255, 255, 255, 0);
        margin: 0 auto;
    }
}

@-o-keyframes close {
    0% {
        -o-transform: scale(100%, 100%);
        background-color: rgba(255, 255, 255, 1);
        margin: 0 auto;
    }

    100% {
        -o-transform: scale(0, 0);
        background-color: rgba(255, 255, 255, 0);
        margin: 0 auto;
    }
}

@-ms-keyframes close {
    0% {
        -ms-transform: scale(100%, 100%);
        background-color: rgba(255, 255, 255, 1);
        margin: 0 auto;
    }

    100% {
        -ms-transform: scale(0, 0);
        background-color: rgba(255, 255, 255, 0);
        margin: 0 auto;
    }
}


/* Opacity animation */
@keyframes slideIn {
    0% {
        transform: translatex(-9999px);
    }

    100% {
        transform: translateX(0px);
    }
}

@-moz-keyframes slideIn {
    0% {
        -moz-transform: translatex(-9999px);
    }

    100% {
        -moz-transform: translateX(0px);
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: translatex(-9999px);
    }

    100% {
        -webkit-transform: translateX(0px);
    }
}

@-o-keyframes slideIn {
    0% {
        -o-transform: translatex(-9999px);
    }

    100% {
        -o-transform: translateX(0px);
    }
}

@-ms-keyframes slideIn {
    0% {
        -ms-transform: translatex(-9999px);
    }

    100% {
        -ms-transform: translateX(0px);
    }
}

/* Ripple */
@keyframes ripple {
    0% {
      box-shadow: 0 0 0 0rem rgba(255, 255, 255, 0.1),
                  0 0 0 1rem rgba(255, 255, 255, 0.1),
                  0 0 0 2rem rgba(255, 255, 255, 0.1),
                  0 0 0 5rem rgba(255, 255, 255, 0.1);
    }
    100% {
      box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0.1),
                  0 0 0 2rem rgba(255, 255, 255, 0.1),
                  0 0 0 5rem rgba(255, 255, 255, 0.1),
                  0 0 0 8rem rgba(255, 255, 255, 0);
    }
}

@-webkit-keyframes ripple {
    0% {
      -webkit-box-shadow: 0 0 0 0rem rgba(255, 255, 255, 0.1),
                  0 0 0 1rem rgba(255, 255, 255, 0.1),
                  0 0 0 2rem rgba(255, 255, 255, 0.1),
                  0 0 0 5rem rgba(255, 255, 255, 0.1);
    }
    100% {
      -webkit-box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0.1),
                  0 0 0 2rem rgba(255, 255, 255, 0.1),
                  0 0 0 5rem rgba(255, 255, 255, 0.1),
                  0 0 0 8rem rgba(255, 255, 255, 0);
    }
}

@-moz-keyframes ripple {
    0% {
        -moz-box-shadow: 0 0 0 0rem rgba(255, 255, 255, 0.1),
                  0 0 0 1rem rgba(255, 255, 255, 0.1),
                  0 0 0 2rem rgba(255, 255, 255, 0.1),
                  0 0 0 5rem rgba(255, 255, 255, 0.1);
    }
    100% {
        -moz-box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0.1),
                  0 0 0 2rem rgba(255, 255, 255, 0.1),
                  0 0 0 5rem rgba(255, 255, 255, 0.1),
                  0 0 0 8rem rgba(255, 255, 255, 0);
    }
}

@-o-keyframes ripple {
    0% {
        -o-box-shadow: 0 0 0 0rem rgba(255, 255, 255, 0.1),
                  0 0 0 1rem rgba(255, 255, 255, 0.1),
                  0 0 0 2rem rgba(255, 255, 255, 0.1),
                  0 0 0 5rem rgba(255, 255, 255, 0.1);
    }
    100% {
        -o-box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0.1),
                  0 0 0 2rem rgba(255, 255, 255, 0.1),
                  0 0 0 5rem rgba(255, 255, 255, 0.1),
                  0 0 0 8rem rgba(255, 255, 255, 0);
    }
}

@-ms-keyframes ripple {
    0% {
        -ms-box-shadow: 0 0 0 0rem rgba(255, 255, 255, 0.1),
                  0 0 0 1rem rgba(255, 255, 255, 0.1),
                  0 0 0 2rem rgba(255, 255, 255, 0.1),
                  0 0 0 5rem rgba(255, 255, 255, 0.1);
    }
    100% {
        -ms-box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0.1),
                  0 0 0 2rem rgba(255, 255, 255, 0.1),
                  0 0 0 5rem rgba(255, 255, 255, 0.1),
                  0 0 0 8rem rgba(255, 255, 255, 0);
    }
}

.spin-this {
	transform:rotate(0deg);    
	display: inline-block;
  transform-origin: center;
  margin-left: 10px;
  animation-name: spinThis;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
}
button.btn.loading {
    background-color: #FFD618;
    color: #000;
}

@keyframes spinThis {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}