.kp-next-events {
display: grid;
gap: 20px;
grid-template-columns: repeat(3, 1fr);
}
.kp-next-events .kp-event {
position: relative;
}
.kp-next-events .kp-event__link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
}
.kp-next-events .kp-event__image-wrapper {
position: relative;
}
.kp-next-events .kp-event__image-wrapper::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 221, 2, 0);
z-index: 20;
transition: background-color 0.5s;
}
.kp-next-events .kp-event__date {
position: absolute;
top: 0;
left: 0;
background-color: #ffdd02;
padding: 5px;
z-index: 100;
}
.kp-next-events .kp-event__title {
background-color: #e4e4e4;
padding: 10px;
}
.kp-next-events .kp-event:hover .kp-event__image-wrapper::after {
background-color: rgba(255, 221, 2, 0.8);
}
.kp-single-event {
max-width: 1200px;
margin: 0 auto;
}
.kp-single-event__title-image {
max-width: 600px;
margin-top: 30px;
margin-left: auto;
margin-right: auto;
}
.kp-single-event__title-image img {
max-width: 100%;
}
.kp-single-event__description {
margin-top: 30px;
}
.kp-single-event__details {
margin-top: 50px;
}
.kp-single-event__register {
margin-top: 50px;
display: flex;
justify-content: space-around;
}
.kp-single-event__map {
margin-top: 100px;
}
.kp-single-event__map #map {
height: 600px;
}
.kp-event__btn {
background-color: #e4e4e4;
transform: scale(1);
font-size: 15px;
padding: 12px 24px;
border-radius: 3px;
border: none;
border-bottom: 1px solid #ffdd02;
font-weight: 100;
transition: 0.3s ease all;
display: table;
margin-left: auto;
margin-right: auto;
margin-bottom: 1rem;
}
.kp-event__btn:hover {
transform: scale(1.07) rotate(3deg);
box-shadow: 0 0 6px 0 rgba(255, 221, 2, 0.54);
}
.kp-event-register {
max-width: 700px;
margin: 0 auto;
text-align: left;
}
.kp-event-register h1 {
text-align: center;
}
.kp-event-register__alert {
padding: 15px;
max-width: 500px;
margin: 0 auto;
}
.kp-event-register__alert p:last-child {
margin-bottom: 0;
}
.kp-event-register__alert--error {
background-color: red;
color: #ffffff;
}
.kp-event-register__alert--success {
background-color: green;
color: #ffffff;
}
.kp-event-register__alert--info {
background-color: deepskyblue;
color: #000000;
}
.kp-event-register .selectize-control .selectize-input {
background: white !important;
border: 1px solid #d6d6d6 !important;
box-shadow: none !important;
height: 42px;
line-height: 25px;
}