@import url("https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Quicksand:300,400,500,700");


.event_container {
  display: flex;
  width: 100%;
  height: auto;
  background: #FFF;
  max-width: 750px;
  border-radius: 2px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25), 0 8px 8px 0 rgba(0, 0, 0, 0.15);
  margin: 20px 0;
}
.event_container .event_bg {
  width: 40%;
  height: 100%;
  background: #333;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.event_container .event_info {
  width: 60%;
  height: auto;
  padding: 10px 20px;
}
.event_container .event_info .event_title {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
}
.event_container .event_info .event_title h4 {
  font-size: 26px;
  font-family: "Quicksand", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.event_container .event_info .event_desc {
  display: flex;
  width: 100%;
  height: calc(100% - 100px);
}
.event_container .event_info .event_desc p {
  font-size: 16px;
  font-weight: 500;
  color: #565861;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event_container .event_info .event_footer {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  justify-content: space-between;
}
.event_container .event_info .event_footer .event_date p {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.event_container .event_info .event_footer .event_more {
  display: flex;
  width: auto;
  height: 100%;
  align-items: center;
}
.event_container .event_info .event_footer .event_more a.btn_more {
  display: flex;
  width: auto;
  height: auto;
  align-items: center;
  padding: 0 15px;
  text-decoration: none;
  color: #5F5FFC;
  font-size: 16px;
  font-weight: 600;
  border-radius: 2px;
  will-change: background;
  transition: background 0.3s, color 0.2s ease-in;
}
.event_container .event_info .event_footer .event_more a.btn_more i.material-icons {
  font-size: 18px;
  font-weight: 500;
  padding: 0 2px;
}
.event_container .event_info .event_footer .event_more a.btn_more:hover {
  background: #5F5FFC;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .event_container {
    width: 100%!important;
    height: 480px;
    background: #FFF;
    flex-direction: column;
  }
  .event_container .event_bg {
  width: 100%!important;
    height: 250px;
    min-height: 250px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
  .event_container .event_info {
      width: 100%!important;
    height: auto;
  }
  
  .event_container .event_info .event_footer {
    display: block;}
}


/******************************
* SINGLE EVENT
*
*********************************
*/



.card {
  border: none
}

.event {
  background-color: #eee
}

.brand {
  font-size: 13px
}
.card h1 {
font-size: 27px;
font-weight: 500;
}
.card h2 {
font-size: 27px;
font-family: 'Circular-Loom';
font-weight: 200;
}

.about {
  font-size: 14px
}

.color {
  margin-bottom: 10px
}

label.radio {
  cursor: pointer
}

label.radio input {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  pointer-events: none
}

label.radio span {
  padding: 2px 9px;
  border: 2px solid #ff0000;
  display: inline-block;
  color: #ff0000;
  border-radius: 3px;
  text-transform: uppercase
}

label.radio input:checked+span {
  border-color: #ff0000;
  background-color: #ff0000;
  color: #fff
}

.btn-danger {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important
}

.btn-danger:hover {
  background-color: #da0606 !important;
  border-color: #da0606 !important
}

.btn-danger:focus {
  box-shadow: none
}

.selector-for-some-widget {
box-sizing: content-box;
}


.event-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.event-details h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.event-content {
    display: flex;
    align-items: flex-start;
}

.event-image {
    flex: 0 0 auto;
    margin-right: 20px;
    text-align: center;
}

.event-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.buy-ticket-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.buy-ticket-button:hover {
    background-color: #0056b3;
}

.event-description {
    flex: 1 1 auto;
}

.event-description p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}
