 .wt-modal {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.4);
    display: none;
    opacity: 0;
    padding: 15px;
    text-align: left;
 }

 .wt-modal a {
   text-decoration: none !important;
   outline: none !important;
 }

 .wt-modal.wt-modal-open {
    display: flex !important;
    opacity: 1 !important;
 }

 .wt-modal .wt-modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    max-height: 1000px;
    background-color: #fefefe;
    padding: 20px;
    border-radius: 5px;
 }

 .wt-modal-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
 }

 .wt-toolbar-title {
    font-weight: 600;
    font-size: 18px;
 }

 .wt-toolbar-close button {
    line-height: 1;
    padding: 5px 10px;
    margin: 0;
}

.wt-modal-body {
   height: 100%;
   width: 100%;
}

#wt-map {
    width: 100%;
    height: 100%;
}

.wt-full-width {
    width: 100% !important;
}

.wt-row {
   display: flex;
   flex-direction: row;
   gap: 20px;
}

.wt-left-column {
   width: 400px;
   flex: 0 0 400px;
}

.wt-right-column {
   width: 100%;
}

@media screen and (max-width: 992px) {
   .wt-left-column {
      width: 100%;
      flex: 0 0 100%;
   }

   .wt-right-column {
     display: none;
   }
}

.wt-form-group {
   margin-bottom: 10px;
}

.wt-locations-list {
   height: 400px;
   overflow-y: auto;
   border: 1px #eee solid;
   padding: 5px;
}

.wt-location {
   display: flex;
   flex-direction: row;
   align-items: center;
   padding: 5px 0px;
   margin: 5px 0px;
   border-bottom: 1px #f1f1f1 solid;
}

.wt-location-left {
   width: 100%;
}

.wt-location-name {
   font-weight: 600;
   font-size: 15px;
   line-height: 18px;
}

.wt-location-address {
   font-size: 14px;
   line-height: 17px;
   margin-top: 3px;
}

.wt-select-location {
   width: 100%;
   margin-top: 5px;
   line-height: 1;
   font-size: 14px;
   padding: 10px 15px !important;
   margin: 0 !important;
}

.wt-location-popup {
   min-width: 250px;
}

.wt-location-popup-title {
   font-weight: 600;
   font-size: 14px;
}

.wt-location-popup-address {
   margin-top: 5px;
   font-size: 13px;
}

.wt-location-details {
   padding: 5px;
   margin-top: 10px;
   border: 1px #e7e7e7 solid;
   border-radius: 3px;
}

.wt-location-logo {
   padding: 0px 8px;
}

.wt-location-logo img {
   max-width: 35px;
   max-height: 35px;
}