

.event-section .event-box {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 576px) {
    
}

.event-section .event-box{
    margin: 10px 0px;
}

.event-section .event-box .event-banner{
    /*height: 300px;*/
    width: fit-content;
    object-fit: fill; width: 100%;
    padding: 10px;
}

.event-section .event-box .card-ticket{
    padding: 24px;
    margin: 20px 0;
    border-radius: 14px;
    box-shadow: 0px 16px 24px -8px rgba(176,176,176,0.2);
    -webkit-box-shadow: 0px 16px 24px -8px rgba(176,176,176,0.2);
    -moz-box-shadow: 0px 16px 24px -8px rgba(176,176,176,0.2);
}

.event-section .event-box .details a h6{
    height: 45px;
}

.event-section .event-box .details .progress{
    height: 10px; 
}

.event-section .event-box h4 {
  font-size: 20px;
}

.event-section .event-box:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
}

.event-section .event-box:hover .feature-thumb img {
  -webkit-transform: scale(1.09) rotate(3deg);
          transform: scale(1.09) rotate(3deg);
}

.event-section .event-box .details {
  padding: 20px;
}

.event-section .event-box .details .meta {
  margin-top: 20px;
}

.event-section .event-box .details a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.event-section .event-box .details a:hover {
  color: #000 !important;
}

.event-section .event-box .details .meta-text {
  margin-left: 15px;
}

.event-section .event-box .details .meta-text h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}

.form-control{
    font-size: 15px !important;
}

/*Custom CSS dashboard*/
.navbar-nav .nav-item{
    padding: 5px 0px;
}

.navbar-expand-lg .nav-item.active{
    background: #ffe9e8 !important;
}

.navbar-expand-lg .nav-item.active:after{
    border: 0 solid #F44336;
}

.container-chatbot .support-button {
    position: fixed;
    bottom: 80px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #a5050a;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    cursor: pointer;
    box-shadow: 0px 2px 3px #222;
    z-index: 1000;
}
.container-chatbot .support-button:hover {
    background-color: #c8080e;
}
.container-chatbot .support-button .icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 60px;
    text-align: center;
    transition: all 0.3s;
}
.container-chatbot .support-button .icon.wa {
    animation: wa-out 0.3s;
}
.container-chatbot .support-button .icon.close {
    opacity: 0;
    margin: auto;
    transform: rotateZ(-70deg);
    animation: close-out 0.3s;
}
.container-chatbot .card {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 6px 0px;
    position: absolute;
    background-color:white;
    border-radius: 8px;
    right: 40px;
    bottom: 145px;
    display: none;
    border:1px solid rgba(0, 0, 0, 0.15);
    z-index: 10000;
}
.container-chatbot .card .ayobantu-support .title{
    border-bottom: 1px solid rgb(245, 245, 245);
    padding: 12px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-weight: 600;
    line-height: 1.5em;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 18px;
}
.container-chatbot .card .ayobantu-chatbot .title{
    border-bottom: 1px solid rgb(245, 245, 245);
    padding: 12px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-weight: 600;
    line-height: 1.5em;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 18px;
    cursor: pointer;
}
.container-chatbot .card .ayobantu-support .chatai{
    display: flex;
    background: linear-gradient(126.83deg, rgb(255, 255, 255) 0%, #ffe7e8 69.97%);
    padding: 16px;
    margin: 16px;
    border: 1px solid rgb(245, 245, 245);
    border-radius: 16px;
    cursor: pointer;
}

.container-chatbot .card .ayobantu-support .chatwa{
    display: flex;
    background: linear-gradient(126.83deg, rgb(255, 255, 255) 0%, #c8ffdd 70.24%);
    padding: 16px;
    margin: 16px;
    border: 1px solid rgb(245, 245, 245);
    border-radius: 16px;
    cursor: pointer;
}

.container-chatbot.is-opened .icon.wa {
    animation: wa-in 0.15s linear;
    animation-fill-mode: forwards;
}
.container-chatbot.is-opened .icon.close {
    animation: close-in 0.2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}
.container-chatbot.is-opened .card {
    display: flex;
    flex-direction: column;
    position: fixed;
    animation: 1s ease-in-out 0s 1 normal forwards running slide-up;
}

.container-chatbot.is-opened .icon.wa {
    animation: wa-in 0.15s linear;
    animation-fill-mode: forwards;
}

.container-chatbot.is-opened .icon.close {
    animation: close-in 0.2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

@keyframes close-in {
    from {
        opacity: 0;
        transform: rotateZ(-70deg);
  }
    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}
@keyframes close-out {
    from {
        opacity: 1;
        transform: rotateZ(0deg);
    }
    to {
        opacity: 0;
        transform: rotateZ(-70deg);
    }
}
@keyframes wa-in {
  from {
        opacity: 1;
        transform: rotateZ(0deg);
    }
    to {
        opacity: 0;
        transform: rotateZ(180deg);
    }
}
@keyframes wa-out {
    from {
        opacity: 0;
        transform: rotateZ(180deg);
    }
    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}

@keyframes slide-up {
    0% {
        transform: translateY(100%);
        opacity: 1;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes slide-down {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 1;
    }
}