/* fonts */
@font-face {
  font-family: "Montserrat-Thin";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/montserrat/Montserrat-Thin.eot?") format("eot"),
    url("../fonts/montserrat/Montserrat-Thin.woff2") format("woff2"),
    url("../fonts/montserrat/Montserrat-Thin.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-Light";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/montserrat/Montserrat-Light.eot?") format("eot"),
    url("../fonts/montserrat/Montserrat-Light.woff2") format("woff2"),
    url("../fonts/montserrat/Montserrat-Light.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-Regular";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/montserrat/Montserrat-Regular.eot?") format("eot"),
    url("../fonts/montserrat/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/montserrat/Montserrat-Regular.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-Medium";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/montserrat/Montserrat-Medium.eot?") format("eot"),
    url("../fonts/montserrat/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/montserrat/Montserrat-Medium.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-SemiBold";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/montserrat/Montserrat-SemiBold.eot?") format("eot"),
    url("../fonts/montserrat/Montserrat-SemiBold.woff2") format("woff2"),
    url("../fonts/montserrat/Montserrat-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-Bold";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/montserrat/Montserrat-Bold.eot?") format("eot"),
    url("../fonts/montserrat/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/montserrat/Montserrat-Bold.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-ExtraBold";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/montserrat/Montserrat-ExtraBold.eot?") format("eot"),
    url("../fonts/montserrat/Montserrat-ExtraBold.woff2") format("woff2"),
    url("../fonts/montserrat/Montserrat-ExtraBold.woff") format("woff");
}

@font-face {
  font-family: "Montserrat-Black";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/montserrat/Montserrat-Black.eot?") format("eot"),
    url("../fonts/montserrat/Montserrat-Black.woff2") format("woff2"),
    url("../fonts/montserrat/Montserrat-Black.woff") format("woff");
}

/* custom css */
body {
  font-family: "Montserrat-Regular";
  background: #e7eaef;
}

a {
  color: #528483;
}

a:hover {
  color: #385a59;
}

.btn {
  font-family: "Montserrat-Regular";
}

a,
button {
  transition: all linear 0.2s;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
}

.btn:focus,
.btn:hover,
.btn:active {
  outline: none;
  box-shadow: none;
}

.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef !important;
}

.form-control:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: none;
  box-shadow: none;
  outline-offset: 0;
}

input[type="file"]:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: 0px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

textarea {
  overflow: auto;
  resize: none;
}

#wrapper #content-wrapper {
  background-color: #e7eaef;
}

.title,
.sub-title {
  color: #000;
  font-family: "Montserrat-SemiBold";
  font-size: 21px;
  margin-bottom: 15px;
}

.sub-title {
  font-size: 18px;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  background-color: #528483;
  border-color: #528483;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0) !important;
  outline: none;
}

/* small-cards */
.small-cards {
  padding: 0 0 60px;
}

.small-cards .box {
  background: #528483;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  border-radius: 8px;
  padding: 20px 20px 20px 115px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.small-cards .row .outer-box .box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  z-index: -1;
  height: 107px;
  width: 0;
  transition: 0.5s;
  border-radius: 8px 0 0 8px;
  height: 100%;
}

.small-cards .row .outer-box .box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  z-index: -1;
  width: 0;
  height: 107px;
  transition: 0.5s;
  border-radius: 0 8px 8px 0;
  height: 100%;
}

.small-cards .row .outer-box .box:hover::before {
  width: 50%;
}

.small-cards .row .outer-box .box:hover::after {
  width: 50%;
}

.small-cards .row .outer-box:first-of-type .box::before {
  background: #2d4948;
}

.small-cards .row .outer-box:first-of-type .box::after {
  background: #2d4948;
}

.small-cards .row .outer-box:nth-of-type(2) .box::before {
  background: #696d23;
}

.small-cards .row .outer-box:nth-of-type(2) .box::after {
  background: #696d23;
}

.small-cards .row .outer-box:nth-of-type(3) .box::before {
  background: #250c19;
}

.small-cards .row .outer-box:nth-of-type(3) .box::after {
  background: #250c19;
}

.small-cards .row .outer-box:nth-of-type(4) .box::before {
  background: #687391;
}

.small-cards .row .outer-box:nth-of-type(4) .box::after {
  background: #687391;
}

.small-cards .row .outer-box:first-of-type .box {
  background: #528483;
}

.small-cards .row .outer-box:nth-of-type(2) .box {
  background: #969b32;
}

.small-cards .row .outer-box:nth-of-type(3) .box {
  background: #42162d;
}

.small-cards .row .outer-box:last-of-type .box {
  background: #92a1cb;
}

.small-cards .row .outer-box:first-of-type .box i {
  color: #528483;
}

.small-cards .row .outer-box:nth-of-type(2) .box i {
  color: #969b32;
}

.small-cards .row .outer-box:nth-of-type(3) .box i {
  color: #42162d;
  transform: rotate(-45deg);
}

.small-cards .row .outer-box:last-of-type .box i {
  color: #92a1cb;
}

.small-cards .box h3 {
  font-family: "Montserrat-SemiBold";
  font-size: 32px;
  margin-bottom: 0;
}

.small-cards .box p {
  font-family: "Montserrat-Light";
  font-size: 16px;
  margin-bottom: 5px;
}

.small-cards .box:hover {
  text-decoration: none;
}

.small-cards .box i {
  background: #fff;
  color: #528483;
  font-size: 30px;
  width: 62px;
  height: 62px;
  line-height: 62px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 35px;
  top: 20px;
}

.small-cards .box .arrow {
  position: absolute;
  right: 20px;
  bottom: 15px;
}

/* puc-section */
.puc-section {
  padding: 0 0 10px 0;
}

.puc-section .box {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
  -moz-box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
  box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
}

.past-performances .sm-box {
  border: solid 1px #bebebe;
  border-radius: 8px;
  width: 100%;
  padding: 10px;
  margin: 5px 5px 8px;
  min-height: 138px;
}

.past-performances .sm-box h4 {
  font-family: "Montserrat-Bold";
  color: #969c33;
  font-size: 20px;
  margin-bottom: 0;
}

.past-performances .sm-box h3 {
  font-family: "Montserrat-Bold";
  color: #4e4e4d;
  font-size: 32px;
  margin: 10px 0;
}

.past-performances .sm-box img {
  position: absolute;
  right: 25px;
  bottom: 20px;
}

.past-performances .col-lg-6:first-of-type .sm-box h4 {
  color: #969c33;
}

.past-performances .col-lg-6:nth-of-type(2) .sm-box h4 {
  color: #92a1cb;
}

.past-performances .col-lg-6:nth-of-type(3) .sm-box h4 {
  color: #cb5531;
}

.past-performances .col-lg-6:last-of-type .sm-box h4 {
  color: #4e4e4f;
}

.puc-section .event-section {
  position: relative;
}

.puc-section .event-section .next {
  background: #618180;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.puc-section .event-section .next:hover {
  background: #2f3e3e;
}

.puc-section .event-section .event {
  position: relative;
  padding: 0 0 0 110px;
}

.puc-section .event-section .event .profile-name {
  position: absolute;
  left: 15px;
  top: 0;
}

.puc-section .event-section .event p:first-of-type {
  margin-bottom: 6px;
}

.puc-section .event-section .event p {
  color: #000;
  font-family: "Montserrat-SemiBold";
  font-size: 14px;
}

.puc-section .event-section .time {
  font-family: "Montserrat-Bold";
  color: #618180;
  font-size: 14px;
}

/*performance chart/graph*/
.performance-section {
  margin: 0 0 16px 0;
}

.performance-section .card {
  border: 1px solid transparent;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 30px 0px rgb(180 180 178 / 15%);
  -moz-box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
  box-shadow: 0px 0px 30px 0px rgb(180 180 178 / 15%);
  height: 100% !important;
}

.performance-section .card-header {
  background: #f4f4f4;
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/*
/* kendo table header background color */
.performance-section .k-grid-header {
  background: #dce6e6 !important;
}

*/ .performance-section .card-body {
  height: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
}

.performance-section .card-body .table {
  margin-bottom: 0;
}

.performance-section .card-body .table a {
  text-decoration: none;
}

.slider-section {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
  -moz-box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
  box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
}

.slider-section .owl-carousel .owl-dots.disabled,
.slider-section .owl-carousel .owl-nav.disabled,
.slider-section .owl-carousel .owl-nav {
  display: block;
  position: absolute;
  top: -105px;
  right: -40px;
}

.slider-section .owl-carousel .owl-nav button.owl-prev,
.slider-section .owl-carousel .owl-nav button.owl-next {
  text-indent: -999px;
  margin: 3px;
  overflow: hidden;
}

.slider-section .owl-carousel .owl-nav button.owl-prev {
  background: url(../images/slider-arrow.png) no-repeat 0 0;
  width: 39px;
  height: 39px;
}

.slider-section .owl-carousel .owl-nav button.owl-next {
  background: url(../images/slider-arrow.png) no-repeat -39px 0;
  width: 39px;
  height: 39px;
}

.slider-section .owl-carousel .owl-nav button.owl-prev:hover {
  background-color: #fff;
  border-radius: 50%;
}

.slider-section .owl-carousel .owl-nav button.owl-next:hover {
  background-color: #fff;
  border-radius: 50%;
}

.slider-section .owl-theme .owl-dots .owl-dot.active span,
.slider-section .owl-theme .owl-dots .owl-dot:hover span {
  display: none;
}

/* table-listing */
.table-listing-outer .green-btn {
  background: #959e21 !important;
  border-color: #959e21 !important;
  margin-bottom: 15px;
}

.table-listing-outer .green-btn:hover {
  background: #4d511d !important;
  border-color: #4d511d !important;
}

.table-listing {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
  -moz-box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
  box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
}

.table-listing-outer .table {
  overflow: hidden;
}

.table-listing-outer .table thead tr th {
  background: #dce6e6;
  color: #000;
  font-size: 15px;
  border: 1px solid #c0d2d2;
  border-bottom: solid 5px #b2c8c8;
  white-space: nowrap;
  font-family: "Montserrat-Light";
}

.table-listing-outer .table thead tr th:after,
.table-listing-outer .table thead tr th:before {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.table-listing-outer .table tbody tr td {
  font-family: "Montserrat-Light";
  font-size: 14px;
  position: relative;
  word-break: break-all;
  white-space: normal;
  word-wrap: break-word;
  /* manage breakdowns error*/
}

.table-listing-outer .table tbody tr:nth-child(even) {
  background-color: #f6f9f9;
}

.table-listing-outer .table tbody .action a {
  font-size: 18px;
  margin: 0 10px;
}

.table-listing-outer .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #528483;
  border-color: #528483;
}

.table-listing-outer .page-link {
  color: #585858;
  font-family: "Montserrat-Light";
  font-size: 16px;
}

.dark-gray-color {
  color: #528483 !important;
}

.dark-green-color {
  color: #e8542c !important;
}

.action-btn {
  font-size: 12px !important;
  padding: 2px 5px;
  margin: 5px 0 0 !important;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
}

.action-btn:hover {
  text-decoration: none;
}

.dark-gray-color-bg {
  color: #fff !important;
  background: #528483 !important;
}

.middle-color-bg {
  color: #fff !important;
  background: #8ea4ce !important;
}

.dark-green-color-bg {
  color: #fff !important;
  background: #e8542c !important;
}

/*icon table alloaction*/
.table-listing-outer .table a {
  color: #212529;
  display: block;
  margin: 0 auto;
  max-width: 150px;
}

/*allocation table*/
.table-responsive {
  overflow: auto;
  height: auto;
  min-height: 100%;
  /*dashboard mobile table bug fixes */
}

.dataTables_info {
  display: none;
}

.table-listing-outer .table p {
  padding: 3px 15px;
  margin-bottom: 0;
}

.color-box .box {
  width: 35px;
  height: 35px;
  margin: 0 5px 5px 0;
}

.copyright {
  color: #528483;
  font-size: 13px;
  font-family: "Montserrat-Light";
  padding: 15px;
  font-size: 13px;
}

/* create new artist */
.page-container {
  padding: 0 0 30px 0;
}

.primary-color {
  color: #528483;
}

.form-box {
  background: #fff;
  border-radius: 8px;
  padding: 25px 5px;
  -webkit-box-shadow: 0px 0px 30px 0px rgb(180 180 178 / 15%);
  -moz-box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
  box-shadow: 0px 0px 30px 0px rgb(180 180 178 / 15%);
}

.form-box label {
  font-family: "Montserrat-Light";
  font-size: 14px;
}

.form-box label span {
  color: red;
}

.main-form {
  margin: 0;
  padding: 0;
}

.main-form .form-control {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: 38px;
}

.btn-secondary {
  background: #959e21;
  border-color: #959e21;
}

.btn-secondary:hover {
  background: #636916;
  border-color: #636916;
}

/* genre-add */
.genre-add .close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #528483;
  /*url(../images/btn-bg.jpg) repeat 0 0;*/
  background: rgba(82, 132, 131);
  background-repeat: repeat;
  font-size: 16px;
  border: 0;
  padding: 0 15px;
  border-radius: 5px;
  margin: 0 0 0 5px;
  opacity: 1;
}

.genre-add .close img {
  margin: -4px 0 0 0;
}

.genre-add .close i {
  color: #fff;
  font-size: 18px;
}

.main-form .genre-btn-outer button img {
  margin: -4px 0 0 7px;
}

/* select box */
.main-form select.form-control,
select.form-control {
  font-family: "Montserrat-Light", sans-serif;
  margin: 2px;
  width: 100%;
  padding: 5px 35px 5px 12px;
  font-size: 14px;
  border: 1px solid #bacecd;
  height: 38px;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f6f7f9 url(../images/select-arrow.svg) no-repeat right 12px !important;
}

/* CAUTION: Internet Explorer hackery ahead */
select::-ms-expand {
  display: none;
  /* Remove default arrow in Internet Explorer 10 and 11 */
}

/* Target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width: 0\0) {
  select {
    background: none\9;
    padding: 5px\9;
  }
}

/* Login Page */
html,
body {
  position: relative;
}

.ticket-upload-templates-table th:nth-of-type(2) {
  min-width: 300px;
  max-width: 300px;
  width: 100%;
}

.ticket-upload-templates-table th:nth-of-type(3) {
  min-width: 300px;
  max-width: 300px;
  width: 100%;
}

@media (min-width: 768px) {

  html,
  body {
    height: 100%;
    position: relative;
  }
}

body {
  background: #e7eaef;
  font-size: 15px;
  padding-top: 63px;
}

.form-control-user::-webkit-input-placeholder {
  /* Edge */
  color: #00090c;
  opacity: 0.7;
}

.form-control-user:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #00090c;
  opacity: 0.7;
}

.form-control-user::placeholder {
  color: #00090c;
  opacity: 0.7;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1296px;
}

.btn-primary {
  background-color: #528483;
  border-color: #528483;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active {
  background-color: #528483;
  border-color: #528483;
}

.shadow-lg {
  box-shadow: 0 15px 15px rgba(53, 138, 216, 0.2) !important;
}

.login-form-container {
  flex: 0 0 549px;
  max-width: 549px;
  background: #fff;
  height: 360px;
  margin: 20px 0;
}

.login-bg-container {
  flex: 0 0 361px;
  max-width: 361px;
}

.login-screen {
  max-width: 550px;
  width: 100%;
  height: 400px;
  margin: 0 auto;
}

.bg-login-image {
  background: url("../images/login-img.jpg");
  background-position: top right;
  background-size: cover;
  width: 361px;
  height: 400px;
}

form.user .form-group {
  margin-bottom: 15px;
}

form.user .form-control-user {
  border-radius: 5px;
  background: #fff;
  font-size: 15px;
  color: #000;
  padding: 0 30px 0 15px;
  height: 40px;
  border-color: #00090c;
}

form.user .btn-user {
  border-radius: 5px;
  width: 115px;
  text-align: center;
  height: 38px;
  padding: 0;
  line-height: 38px;
}

.login-left .form-group {
  position: relative;
}

.login-left .form-group i {
  position: absolute;
  right: 11px;
  top: 14px;
  color: #93a5cd;
  font-size: 15px;
}

.login-left {
  margin: 0 22px 0 22px;
  padding: 35px 50px;
}

.border1,
.border2,
.border3,
.border4 {
  position: relative;
  height: 360px;
  width: 100%;
}

.border1:before,
.border2:before,
.border3:before,
.border4:before {
  width: 5px;
  height: 25%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
}

.border1:before {
  background: #8ea4ce;
}

.border2:before {
  background: #e8542c;
  top: 25%;
  border-top: solid 1px #fff;
}

.border3:before {
  background: #959e21;
  top: 50%;
  border-top: solid 1px #fff;
}

.border4:before {
  top: 75%;
  background: #7a64a9;
  border-top: solid 1px #fff;
}

.forgot-password a {
  color: #528483;
  font-family: "Montserrat-Light";
  font-style: italic;
  font-size: 15px;
}

.copy-right {
  color: #528483;
  opacity: 0.8;
  padding: 15px;
  font-size: 13px;
  font-family: "Montserrat-Light";
  width: 100%;
}

/* Top Bar and sidebar */
.sidebar {
  padding: 0;
  width: 135px !important;
  flex: 0 0 135px;
}

.topbar {
  background: #528483;
  margin-left: 0;
  height: 62px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
}

.menu-icon {
  width: 38px;
  height: 38px;
  border-radius: 100px;
  background: #325c5b;
  text-align: center;
  line-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-icon:hover {
  background: #3a706f;
}

.badge.badge-counter {
  font-size: 12px;
  right: -5px !important;
  left: auto;
  top: 20px;
  background: #fff;
  border-radius: 100px;
  color: #000;
  transform: none !important;
  font-weight: normal;
}

.topbar .nav-item .nav-link {
  margin: 0 5px;
  padding: 0;
}

.sidebar .nav-item .nav-link .img-profile,
.topbar .nav-item .nav-link .img-profile {
  width: 42px;
  height: 42px;
  border: solid 1px #ccc;
}

.topbar.navbar-light .navbar-nav .nav-item.user-dropdown .nav-link {
  color: #fff;
  background: url(../images/caret-arrow.png) no-repeat center right;
  padding-right: 15px;
  font-family: "Montserrat-Light";
}

.user-dropdown .dropdown-menu .dropdown-item {
  font-family: "Montserrat-Light";
  padding: 0.25rem 0.5rem;
}

.user-dropdown .dropdown-menu .dropdown-item i {
  color: #528483;
}

.topbar .dropdown-list .dropdown-header {
  font-weight: normal;
  font-size: 14px;
  background-color: #528483;
  border: 1px solid #528483;
}

/* Sidebar */
.sidebar-bg {
  background: #fff;
}

.sidebar .nav-item {
  border-bottom: solid 1px #e4ecec;
}

.sidebar .nav-item:last-child {
  margin-bottom: 0;
}

.sidebar .nav-item .nav-link span {
  font-weight: 500;
  font-size: 12px !important;
}

.sidebar .nav-item .nav-link {
  width: auto !important;
  color: #000;
  text-align: center;
  padding: 13px 0 !important;
  border-left: solid 6px #4d4d4d;
}

.sidebar .nav-item .nav-link.active {
  color: #fff;
}

.sidebar .nav-item .nav-link span.icon {
  background: url(../images/dashboard-icon.png) no-repeat top center;
  height: 30px;
  display: block;
}

.sidebar .nav-item .nav-link {
  position: relative;
  border: none;
}

.sidebar .nav-item {
  position: relative;
  z-index: 3;
}

.sidebar .nav-item.menu3 .nav-link {
  border-color: #528483;
  border: none;
}

.sidebar .nav-item .nav-link::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: transparent;
  z-index: -1;
  transition: 0.5s;
}

.sidebar .nav-item .nav-link:hover::before {
  width: 100%;
}

.sidebar .nav-item.back .nav-link::before {
  background: #7a64a9;
}

.sidebar .nav-item.menu1 .nav-link::before {
  background: #4d4d4d;
}

.sidebar .nav-item.menu2 .nav-link::before {
  background: #6a544f;
}

.sidebar .nav-item.menu3 .nav-link::before {
  background: #528483;
}

.sidebar .nav-item.menu4 .nav-link::before {
  background: #4a0e2a;
}

.sidebar .nav-item.menu5 .nav-link::before {
  background: #8ea4ce;
}

.sidebar .nav-item.menu6 .nav-link::before {
  background: #e8542c;
}

.sidebar .nav-item.menu14 .nav-link::before {
  background: #e8542c;
}

.sidebar .nav-item.menu7 .nav-link::before {
  background: #959e21;
}

.sidebar .nav-item.menu8 .nav-link::before {
  background: #7a64a9;
}

.sidebar .nav-item.menu9 .nav-link::before {
  background: #4d511d;
}

.sidebar .nav-item.menu10 .nav-link::before {
  background: #e7343f;
}

.sidebar .nav-item.menu11 .nav-link::before {
  background: #1883b2;
}

.sidebar .nav-item.menu12 .nav-link::before {
  background: #8ea4ce;
}

.sidebar .nav-item.menu13 .nav-link::before {
  background: #959e21;
}

/* border color class start */
.sidebar .nav-item.back .nav-link {
  border-color: #7a64a9;
}

.sidebar .nav-item.menu1 .nav-link {
  border-color: #4d4d4d;
}

.sidebar .nav-item.menu2 .nav-link {
  border-color: #6a544f;
}

.sidebar .nav-item.menu3 .nav-link {
  border-color: #528483;
}

.sidebar .nav-item.menu4 .nav-link {
  border-color: #4a0e2a;
}

.sidebar .nav-item.menu5 .nav-link {
  border-color: #8ea4ce;
}

.sidebar .nav-item.menu6 .nav-link {
  border-color: #e8542c;
}

.sidebar .nav-item.menu14 .nav-link {
  border-color: #e8542c;
}

.sidebar .nav-item.menu7 .nav-link {
  border-color: #959e21;
}

.sidebar .nav-item.menu8 .nav-link {
  border-color: #7a64a9;
}

.sidebar .nav-item.menu9 .nav-link {
  border-color: #4d511d;
}

.sidebar .nav-item.menu10 .nav-link {
  border-color: #e7343f;
}

.sidebar .nav-item.menu11 .nav-link {
  border-color: #1883b2;
}

.sidebar .nav-item.menu12 .nav-link {
  border-color: #8ea4ce;
}

.sidebar .nav-item.menu13 .nav-link {
  border-color: #959e21;
}

.sidebar .nav-item.back .nav-link::before {
  background: #7a64a9;
}

.sidebar .nav-item.promoter .nav-link::before {
  background: #508381;
}

.sidebar .nav-item.rep .nav-link::before {
  background: #959e21;
}

.sidebar .nav-item.in-house-promoter .nav-link::before {
  background: #6a544f;
}

.sidebar .nav-item.age-restriction .nav-link::before {
  background: #8ea4ce;
}

.sidebar .nav-item.tour-type .nav-link::before {
  background: #e8542c;
}

.sidebar .nav-item.contact-roles .nav-link::before {
  background: #4a0e2a;
}

.sidebar .nav-item.town .nav-link::before {
  background: #508381;
}

.sidebar .nav-item.promoter-pa .nav-link::before {
  background: #959e21;
}

.sidebar .nav-item.document-type .nav-link::before {
  background: #4d511d;
}

.sidebar .nav-item.cost-types .nav-link::before {
  background: #508381;
}

/* border color class start */

.sidebar .nav-item.back .nav-link span.icon {
  height: 32px;
}

.sidebar .nav-item.menu1 .nav-link span.icon {
  height: 24px;
}

.sidebar .nav-item.menu2 .nav-link span.icon {
  height: 29px;
}

.sidebar .nav-item.menu3 .nav-link span.icon {
  height: 28px;
}

.sidebar .nav-item.menu4 .nav-link span.icon {
  height: 28px;
}

.sidebar .nav-item.menu5 .nav-link span.icon {
  height: 37px;
}

.sidebar .nav-item.menu6 .nav-link span.icon {
  height: 43px;
}

.sidebar .nav-item.menu14 .nav-link span.icon {
  height: 37px;
}

.sidebar .nav-item.menu7 .nav-link span.icon {
  height: 25px;
}

.sidebar .nav-item.menu8 .nav-link span.icon {
  height: 30px;
}

.sidebar .nav-item.menu9 .nav-link span.icon {
  height: 31px;
}

.sidebar .nav-item.menu10 .nav-link span.icon {
  height: 28px;
}

.sidebar .nav-item.menu11 .nav-link span.icon {
  height: 28px;
}

.sidebar .nav-item.menu12 .nav-link span.icon {
  height: 35px;
}

.sidebar .nav-item.menu13 .nav-link span.icon {
  height: 35px;
}

.sidebar-dark .nav-item.back.active .nav-link {
  background: #7a64a9;
}

.sidebar-dark .nav-item.menu1.active .nav-link {
  background: #4d4d4d;
}

.sidebar-dark .nav-item.menu2.active .nav-link {
  background: #6a544f;
}

.sidebar-dark .nav-item.menu3.active .nav-link {
  background: #528483;
}

.sidebar-dark .nav-item.menu4.active .nav-link {
  background: #4a0e2a;
}

.sidebar-dark .nav-item.menu5.active .nav-link {
  background: #8ea4ce;
}

.sidebar-dark .nav-item.menu6.active .nav-link {
  background: #e8542c;
}

.sidebar-dark .nav-item.menu14.active .nav-link {
  background: #e8542c;
}

.sidebar-dark .nav-item.menu7.active .nav-link {
  background: #959e21;
}

.sidebar-dark .nav-item.menu8.active .nav-link {
  background: #7a64a9;
}

.sidebar-dark .nav-item.menu9.active .nav-link {
  background: #4d511d;
}

.sidebar-dark .nav-item.menu10.active .nav-link {
  background: #e7343f;
}

.sidebar-dark .nav-item.menu11.active .nav-link {
  background: #1883b2;
}

.sidebar-dark .nav-item.menu12.active .nav-link {
  background: #8ea4ce;
}

.sidebar-dark .nav-item.menu13.active .nav-link {
  background: #959e21;
}

.sidebar-dark .nav-item.menu1 .nav-link.active {
  background: #4d4d4d;
}

.sidebar-dark .nav-item.menu2 .nav-link.active {
  background: #6a544f;
}

.sidebar-dark .nav-item.menu3 .nav-link.active {
  background: #528483;
}

.sidebar-dark .nav-item.menu4 .nav-link.active {
  background: #4a0e2a;
}

.sidebar-dark .nav-item.menu5 .nav-link.active {
  background: #8ea4ce;
}

.sidebar-dark .nav-item.menu6 .nav-link.active {
  background: #e8542c;
}

.sidebar-dark .nav-item.menu14 .nav-link.active {
  background: #e8542c;
}

.sidebar-dark .nav-item.menu7 .nav-link.active {
  background: #959e21;
}

.sidebar-dark .nav-item.menu8 .nav-link.active {
  background: #7a64a9;
}

.sidebar-dark .nav-item.menu9 .nav-link.active {
  background: #4d511d;
}

.sidebar-dark .nav-item.menu10 .nav-link.active {
  background: #e7343f;
}

.sidebar-dark .nav-item.menu11 .nav-link.active {
  background: #1883b2;
}

.sidebar-dark .nav-item.menu12 .nav-link.active {
  background: #8ea4ce;
}

.sidebar-dark .nav-item.menu13 .nav-link.active {
  background: #959e21;
}

.sidebar-dark .nav-item.promoter .nav-link.active {
  background: #508381;
}

.sidebar-dark .nav-item.rep .nav-link.active {
  background: #959e21;
}

.sidebar-dark .nav-item.in-house-promoter .nav-link.active {
  background: #6a544f;
}

.sidebar-dark .nav-item.age-restriction .nav-link.active {
  background: #8ea4ce;
}

.sidebar-dark .nav-item.tour-type .nav-link.active {
  background: #e8542c;
}

.sidebar-dark .nav-item.contact-roles .nav-link.active {
  background: #4a0e2a;
}

.sidebar-dark .nav-item.town .nav-link.active {
  background: #508381;
}

.sidebar-dark .nav-item.promoter-pa .nav-link.active {
  background: #959e21;
}

.sidebar-dark .nav-item.document-type .nav-link.active {
  background: #4d511d;
}

.sidebar-dark .nav-item.cost-types .nav-link.active {
  background: #508381;
}

.sidebar .nav-item.menu1 .nav-link span.icon {
  background: url(../images/svg/Dashboard.svg) no-repeat top center;
}

.sidebar .nav-item.menu2 .nav-link span.icon {
  background: url(../images/svg/Calendar.svg) no-repeat top center;
}

.sidebar .nav-item.menu3 .nav-link span.icon {
  background: url(../images/svg/Artists.svg) no-repeat top center;
}

.sidebar .nav-item.menu4 .nav-link span.icon {
  background: url(../images/svg/Contacts.svg) no-repeat top center;
}

.sidebar .nav-item.menu5 .nav-link span.icon {
  background: url(../images/svg/Tickets.svg) no-repeat top center;
}

.sidebar .nav-item.menu6 .nav-link span.icon {
  background: url(../images/svg/Tours.svg) no-repeat top center;
}

.sidebar .nav-item.menu14 .nav-link span.icon {
  background: url(../images/svg/finance-orange.svg) no-repeat top center;
}

.sidebar .nav-item.menu7 .nav-link span.icon {
  background: url(../images/svg/Venues.svg) no-repeat top center;
}

.sidebar .nav-item.menu8 .nav-link span.icon {
  background: url(../images/svg/Settings.svg) no-repeat top center;
}

.sidebar .nav-item.menu9 .nav-link span.icon {
  background: url(../images/svg/Documents.svg) no-repeat top center;
}

.sidebar .nav-item.menu10 .nav-link span.icon {
  background: url(../images/svg/destination.svg) no-repeat top center;
}

.sidebar .nav-item.menu11 .nav-link span.icon {
  background: url(../images/svg/admin.svg) no-repeat top center;
}

.sidebar .nav-item.menu12 .nav-link span.icon {
  background: url(../images/svg/production.svg) no-repeat top center;
}

.sidebar .nav-item.cost-types .nav-link span.icon {
  background: url(../images/svg/cost-type-color.svg) no-repeat top center;
}

/*admin sidebar menu item*/
.sidebar .nav-item.back .nav-link span.icon {
  background: url(../images/svg/back.svg) no-repeat top center;
  background-size: 35px;
}

.sidebar .nav-item.promoter .nav-link span.icon {
  background: url(../images/svg/promoter.svg) no-repeat top center;
}

.sidebar .nav-item.rep .nav-link span.icon {
  background: url(../images/svg/rep.svg) no-repeat top center;
}

.sidebar .nav-item.in-house-promoter .nav-link span.icon {
  background: url(../images/svg/in-house-promoter.svg) no-repeat top center;
}

.sidebar .nav-item.age-restriction .nav-link span.icon {
  background: url(../images/svg/age-restriction.svg) no-repeat top center;
}

.sidebar .nav-item.tour-type .nav-link span.icon {
  background: url(../images/svg/tour-type.svg) no-repeat top center;
}

.sidebar .nav-item.contact-roles .nav-link span.icon {
  background: url(../images/svg/contact-roles.svg) no-repeat top center;
}

.sidebar .nav-item.town .nav-link span.icon {
  background: url(../images/svg/town.svg) no-repeat top center;
  background-size: 32px;
}

.sidebar .nav-item.promoter-pa .nav-link span.icon {
  background: url(../images/svg/promoter-pa.svg) no-repeat top center;
  background-size: 32px;
}

.sidebar .nav-item.document-type .nav-link span.icon {
  background: url(../images/svg/Documents.svg) no-repeat top center;
}

.sidebar .nav-item.rep.userroles .nav-link span.icon {
  background: url(../images/svg/userroles-color.svg) no-repeat top center;
}

.sidebar .nav-item.contact-roles.user .nav-link span.icon {
  background: url(../images/svg/user-color.svg) no-repeat top center;
}

.sidebar .nav-item.menu1:hover .nav-link span.icon,
.sidebar .nav-item.menu1.active .nav-link span.icon {
  background: url(../images/svg/Dashboard-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu2:hover .nav-link span.icon,
.sidebar .nav-item.menu2.active .nav-link span.icon {
  background: url(../images/svg/Calendar-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu3:hover .nav-link span.icon,
.sidebar .nav-item.menu3.active .nav-link span.icon {
  background: url(../images/svg/Artists-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu4:hover .nav-link span.icon,
.sidebar .nav-item.menu4.active .nav-link span.icon {
  background: url(../images/svg/Contacts-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu5:hover .nav-link span.icon,
.sidebar .nav-item.menu5.active .nav-link span.icon {
  background: url(../images/svg/Tickets-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu6:hover .nav-link span.icon,
.sidebar .nav-item.menu6.active .nav-link span.icon {
  background: url(../images/svg/Tours-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu14:hover .nav-link span.icon,
.sidebar .nav-item.menu14.active .nav-link span.icon {
  background: url(../images/svg/finance-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu7:hover .nav-link span.icon,
.sidebar .nav-item.menu7.active .nav-link span.icon {
  background: url(../images/svg/Venues-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu8:hover .nav-link span.icon,
.sidebar .nav-item.menu8.active .nav-link span.icon {
  background: url(../images/svg/Settings-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu9:hover .nav-link span.icon,
.sidebar .nav-item.menu9.active .nav-link span.icon {
  background: url(../images/svg/Documents-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu10:hover .nav-link span.icon,
.sidebar .nav-item.menu10.active .nav-link span.icon {
  background: url(../images/svg/destination-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu11:hover .nav-link span.icon,
.sidebar .nav-item.menu11.active .nav-link span.icon {
  background: url(../images/svg/admin-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu12:hover .nav-link span.icon,
.sidebar .nav-item.menu12 .active .nav-link span.icon {
  background: url(../images/svg/production-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu1:hover .nav-link span.icon,
.sidebar .nav-item.menu1 .nav-link.active span.icon {
  background: url(../images/svg/Dashboard-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu2:hover .nav-link span.icon,
.sidebar .nav-item.menu2 .nav-link.active span.icon {
  background: url(../images/svg/Calendar-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu3:hover .nav-link span.icon,
.sidebar .nav-item.menu3 .nav-link.active span.icon {
  background: url(../images/svg/Artists-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu4:hover .nav-link span.icon,
.sidebar .nav-item.menu4 .nav-link.active span.icon {
  background: url(../images/svg/Contacts-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu5:hover .nav-link span.icon,
.sidebar .nav-item.menu5 .nav-link.active span.icon {
  background: url(../images/svg/Tickets-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu6:hover .nav-link span.icon,
.sidebar .nav-item.menu6 .nav-link.active span.icon {
  background: url(../images/svg/Tours-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu14:hover .nav-link span.icon,
.sidebar .nav-item.menu14 .nav-link.active span.icon {
  background: url(../images/svg/finance-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu7:hover .nav-link span.icon,
.sidebar .nav-item.menu7 .nav-link.active span.icon {
  background: url(../images/svg/Venues-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu8:hover .nav-link span.icon,
.sidebar .nav-item.menu8 .nav-link.active span.icon {
  background: url(../images/svg/Settings-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu9:hover .nav-link span.icon,
.sidebar .nav-item.menu9 .nav-link.active span.icon {
  background: url(../images/svg/Documents-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu10:hover .nav-link span.icon,
.sidebar .nav-item.menu10 .nav-link.active span.icon {
  background: url(../images/svg/destination-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu11:hover .nav-link span.icon,
.sidebar .nav-item.menu11 .nav-link.active span.icon {
  background: url(../images/svg/admin-white.svg) no-repeat top center;
}

.sidebar .nav-item.menu12:hover .nav-link span.icon,
.sidebar .nav-item.menu12 .nav-link.active span.icon {
  background: url(../images/svg/production-white.svg) no-repeat top center;
}

/* admin sidebar menu */
.sidebar .nav-item.back:hover .nav-link span.icon,
.sidebar .nav-item.back .nav-link.active span.icon {
  background: url(../images/svg/back-white.svg) no-repeat top center;
  background-size: 35px;
}

.sidebar .nav-item.promoter:hover .nav-link span.icon,
.sidebar .nav-item.promoter .nav-link.active span.icon {
  background: url(../images/svg/promoter-white.svg) no-repeat top center;
}

.sidebar .nav-item.rep:hover .nav-link span.icon,
.sidebar .nav-item.rep .nav-link.active span.icon {
  background: url(../images/svg/rep-white.svg) no-repeat top center;
}

.sidebar .nav-item.in-house-promoter:hover .nav-link span.icon,
.sidebar .nav-item.in-house-promoter .nav-link.active span.icon {
  background: url(../images/svg/in-house-promoter-white.svg) no-repeat top center;
}

.sidebar .nav-item.age-restriction:hover .nav-link span.icon,
.sidebar .nav-item.age-restriction .nav-link.active span.icon {
  background: url(../images/svg/age-restriction-white.svg) no-repeat top center;
}

.sidebar .nav-item.tour-type:hover .nav-link span.icon,
.sidebar .nav-item.tour-type .nav-link.active span.icon {
  background: url(../images/svg/tour-type-white.svg) no-repeat top center;
}

.sidebar .nav-item.contact-roles:hover .nav-link span.icon,
.sidebar .nav-item.contact-roles .nav-link.active span.icon {
  background: url(../images/svg/contact-roles-white.svg) no-repeat top center;
}

.sidebar .nav-item.town:hover .nav-link span.icon,
.sidebar .nav-item.town .nav-link.active span.icon {
  background: url(../images/svg/town-white.svg) no-repeat top center;
  background-size: 32px;
}

.sidebar .nav-item.promoter-pa:hover .nav-link span.icon,
.sidebar .nav-item.promoter-pa .nav-link.active span.icon {
  background: url(../images/svg/promoter-pa-white.svg) no-repeat top center;
  background-size: 32px;
}

.sidebar .nav-item.document-type:hover .nav-link span.icon,
.sidebar .nav-item.document-type .nav-link.active span.icon {
  background: url(../images/svg/Documents-white.svg) no-repeat top center;
}

.sidebar .nav-item.rep.userroles:hover .nav-link span.icon,
.sidebar .nav-item.rep.userroles .nav-link.active span.icon {
  background: url(../images/svg/userroles-white.svg) no-repeat top center;
}

.sidebar .nav-item.contact-roles.user:hover .nav-link span.icon,
.sidebar .nav-item.contact-roles.user .nav-link.active span.icon {
  background: url(../images/svg/user-white.svg) no-repeat top center;
}

.sidebar .nav-item.genre .nav-link::before {
  background: #e7343f;
}

.sidebar-dark .nav-item.genre .nav-link.active {
  background: #e7343f;
}

.sidebar .nav-item.genre .nav-link span.icon {
  background: url(../images/svg/genre.svg) no-repeat top center;
  background-size: 32px;
}

.sidebar .nav-item.genre:hover .nav-link span.icon,
.sidebar .nav-item.genre .nav-link.active span.icon {
  background: url(../images/svg/genre-white.svg) no-repeat top center;
  background-size: 32px;
}

.sidebar .nav-item.comp-type .nav-link::before {
  background: #0a0a0a;
}

.sidebar-dark .nav-item.comp-type .nav-link.active {
  background: #4d511d;
}

.sidebar .nav-item.comp-type .nav-link span.icon {
  background: url(../images/svg/company-type.svg) no-repeat top center;
  background-size: 32px;
}

.sidebar .nav-item.comp-type:hover .nav-link span.icon,
.sidebar .nav-item.comp-type .nav-link.active span.icon {
  background: url(../images/svg/company-type-white.svg) no-repeat top center;
  background-size: 32px;
}

.sidebar .nav-item.tour-type.note-type .nav-link span.icon {
  background: url(../images/svg/note-types-color.svg) no-repeat top center;
}

.sidebar .nav-item.tour-type.note-type:hover .nav-link span.icon,
.sidebar .nav-item.tour-type.note-type .nav-link.active span.icon {
  background: url(../images/svg/note-types-white.svg) no-repeat top center;
}

.sidebar .nav-item.town.tickting-admin .nav-link span.icon {
  background: url(../images/svg/tickting-admin-color.svg) no-repeat top center;
}

.sidebar .nav-item.town.tickting-admin:hover .nav-link span.icon,
.sidebar .nav-item.town.tickting-admin .nav-link.active span.icon {
  background: url(../images/svg/tickting-admin-white.svg) no-repeat top center;
}

.sidebar .nav-item.town.tenants .nav-link span.icon {
  background: url(../images/svg/manage-tenants-color.svg) no-repeat top center;
}

.sidebar .nav-item.town.tenants:hover .nav-link span.icon,
.sidebar .nav-item.town.tenants .nav-link.active span.icon {
  background: url(../images/svg/manage-tenants-white.svg) no-repeat top center;
}

.sidebar .nav-item.cost-types:hover .nav-link span.icon,
.sidebar .nav-item.cost-types .nav-link.active span.icon {
  background: url(../images/svg/cost-type-white.svg) no-repeat top center;
}

/* sidebar dropdown */

.sidebar .nav-item .collapse,
#admin-dropdown {
  position: absolute;
  left: 100%;
  top: auto;
  margin: 0;
  bottom: 0;
}

.sidebar .nav-item .nav-link[data-toggle="collapse"].collapsed:after,
.sidebar .nav-item .nav-link[data-toggle="collapse"]:after {
  display: none;
}

.sidebar .nav-item .nav-link[aria-expanded="true"] {
  background: #1883b2;
  color: #fff;
}

.sidebar .nav-item .nav-link[aria-expanded="false"] {
  color: #000;
}

.sidebar .nav-item.active .nav-link[aria-expanded="false"],
.sidebar .nav-item .nav-link[aria-expanded="false"]:hover {
  color: #fff;
}

.sidebar .nav-item .nav-link[aria-expanded="true"] span.icon {
  background: url(../images/svg/admin-white.svg) no-repeat top center;
}

.sidebar .nav-item .collapse .collapse-inner,
.sidebar .nav-item .collapsing .collapse-inner {
  font-size: 13px;
  margin-bottom: 0;
}

.topbar #sidebarToggleTop {
  height: 40px;
  width: 40px;
  background-color: transparent;
  padding: 5px;
  margin: 0 !important;
  border-radius: 2px !important;
}

.topbar #sidebarToggleTop:hover {
  background: #1a4b4a;
  border: solid 1px #fff;
}

/* table-search */
.table-search-bar .input-group {
  max-width: 210px;
}

/*contact search 4/03/22*/
.mr-33,
.mx-3 {
  margin-right: 21rem !important;
}

.table-search-bar .input-group .form-control {
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  font-family: "Montserrat-Light", sans-serif;
}

.table-search-bar .input-group button {
  font-family: "Montserrat-Light";
}

.nowrap {
  white-space: nowrap;
}

.checkbox-group {
  margin-top: 35px;
}

.custom-control-input:checked~.custom-control-label:before {
  color: #fff;
  border-color: #528483;
  background-color: #528483;
  top: 2px;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label:after {
  top: 2px;
}

.custom-control-label::before,
.custom-control-label::after {
  top: 2px;
}

.custom-checkbox .custom-control-label:before {
  border-radius: 2px;
}

.custom-checkbox {
  padding-top: 3px;
}

/* custom buttons style */

.calendar-btn {
  background: #528483 !important;
  border-color: #528483 !important;
  margin-bottom: 15px;
}

.artists-btn {
  background: #528483 !important
    /*#62aeac*/
  ;
  border-color: #528483 !important
    /*#62aeac*/
  ;
  margin-bottom: 15px;
}

.contacts-btn {
  background: #528483 !important;
  border-color: #528483 !important;
  margin-bottom: 15px;
}

.tickets-btn {
  background: #528483 !important;
  border-color: #528483 !important;
  margin-bottom: 15px;
}

.tours-btn {
  background: #528483 !important;
  border-color: #528483 !important;
  margin-bottom: 15px;
}

.destination-btn {
  background: #528483 !important;
  border-color: #528483 !important;
  margin-bottom: 15px;
}

.venues-btn,
.rep-btn {
  background: #528483 !important;
  border-color: #528483 !important;
  margin-bottom: 15px;
}

.settings-btn {
  background: #528483 !important;
  border-color: #528483 !important;
  margin-bottom: 15px;
}

.documents-btn {
  background: #528483 !important;
  border-color: #528483 !important;
  margin-bottom: 15px;
}

.in-house-promoter-btn {
  background: #528483 !important;
  border-color: #528483 !important;
}

.age-restriction-btn {
  background: #528483 !important;
  border-color: #528483 !important;
}

.tour-types-btn {
  background: #528483 !important;
  border-color: #528483 !important;
}

.contact-role-btn {
  background: #528483 !important;
  border-color: #528483 !important;
}

.promoter-pa-btn {
  background: #528483 !important;
  border-color: #528483 !important;
}

.genre-btn {
  background: #528483 !important;
  border-color: #528483 !important;
}

.company-type-btn {
  background: #528483 !important;
  border-color: #528483 !important;
}

.note-types-btn {
  background: #528483 !important;
  border-color: #528483 !important;
}

.promoter-btn,
.rep-btn,
.in-house-promoter-btn,
.age-restriction-btn,
.tour-types-btn,
.contact-role-btn,
.town-btn,
.promoter-pa-btn,
.genre-btn,
.company-type-btn,
.note-types-btn,
.cost-type-btn {
  margin-bottom: 15px;
}

.calendar-btn:hover,
.artists-btn:hover,
.contacts-btn:hover,
.tickets-btn:hover,
.tours-btn:hover,
.destination-btn:hover,
.venues-btn:hover,
.settings-btn:hover,
.documents-btn:hover {
  background: #528483 !important;
  border-color: #528483 !important;
}

/* manage venues page start */
.manage-venues .table-search-bar .min-max-capacity {
  max-width: 135px;
}

.manage-venues .table-search-bar .filter-reset-btn-group {
  max-width: 245px;
}

.manage-venues .table-search-bar .filter-reset-btn-group .btn {
  width: 95px;
}

.manage-venues .table th:nth-child(1) {
  width: 30%;
}

.manage-venues .table th:nth-child(2) {
  width: 14%;
}

.manage-venues .table th:nth-child(3) {
  width: 14%;
}

.manage-venues .table th:nth-child(4) {
  width: 14%;
}

.manage-venues .table th:nth-child(5) {
  width: 14%;
}

.manage-venues .table th:nth-child(6) {
  width: 14%;
  min-width: 90px;
}

/* create-new-venue */
.venue-configurations {
  position: relative;
}

.venue-configurations .btn {
  margin-right: 5px;
  padding: 4px 10px;
}

.venue-configurations {
  display: flex;
}

.dc-wrapper {
  width: 290px;
  padding: 0 15px;
  margin: 0 0 25px 0;
}

.doors-and-curfews .dc-outer label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-right: 5px;
  margin: 0;
  width: 160px;
}

.doors-and-curfews .dc-outer input {
  width: 80px;
  margin: 0px;
  font-size: 10px;
  padding: 1px 3px;
  position: relative;
}

.doors-and-curfews .dc-outer input[type="time"]::-webkit-calendar-picker-indicator {
  background-color: transparent;
  background-size: 10px 10px;
  width: 6px;
  height: 6px;
  background-position: center center;
  position: absolute;
  right: 3px;
  top: 12px;
  z-index: 10;
}

.doors-and-curfews .dc-outer input[type="time"]::-moz-calendar-picker-indicator {
  background-color: transparent;
  background-size: 10px 10px;
  width: 6px;
  height: 6px;
  background-position: center center;
  position: absolute;
  right: 3px;
  top: 12px;
  z-index: 10;
}

.doors-and-curfews .dc-outer input[type="time"]::-o-calendar-picker-indicator {
  background-color: transparent;
  background-size: 10px 10px;
  width: 6px;
  height: 6px;
  background-position: center center;
  position: absolute;
  right: 3px;
  top: 12px;
  z-index: 10;
}

.doors-and-curfews .dc-outer input[type="time"]::-ms-calendar-picker-indicator {
  background-color: transparent;
  background-size: 10px 10px;
  width: 6px;
  height: 6px;
  background-position: center center;
  position: absolute;
  right: 3px;
  top: 12px;
  z-index: 10;
}

.dc-wrapper h4 {
  font-size: 14px;
  width: 80px;
  margin: 3px;
  display: flex;
  align-items: flex-end;
}

.dc-wrapper.second,
.dc-wrapper.third {
  width: 200px;
}

.dc-wrapper.second .dc-outer label,
.dc-wrapper.third .dc-outer label {
  display: none;
}

/*Doors and curfew timepicker*/
.dc-wrapper-border .form-control {
  margin: 2px;
}

@media (max-width: 991px) {

  /* create-new-venue */
  .doors-and-curfews .dc-outer label {
    width: 83px;
  }

  .dc-wrapper {
    width: 235px;
    margin: 0 0 25px 0;
  }

  .dc-wrapper.second,
  .dc-wrapper.third {
    width: 160px;
  }

  .dc-wrapper h4 {
    font-size: 12px;
  }

  .dc-wrapper h4 {
    width: 55px;
  }

  .doors-and-curfews .dc-outer input {
    width: 55px;
  }
}

@media (max-width: 767px) {

  /* create-new-venue */
  .dc-wrapper {
    width: 290px;
  }

  .dc-wrapper.second,
  .dc-wrapper.third {
    width: 290px;
  }

  .dc-wrapper.second .dc-outer label,
  .dc-wrapper.third .dc-outer label {
    display: flex;
  }


}

/* register-screen */
.register-screen {
  height: 470px;
}

.register-screen .login-form-container {
  margin: 0;
  height: 470px;
}

.register-screen .login-form-container .border1,
.register-screen .login-form-container .border2,
.register-screen .login-form-container .border3,
.register-screen .login-form-container .border4 {
  height: 470px;
}

.register-screen .login-form-container .login-left {
  padding: 16px 50px;
}

.register-txt span {
  font-family: "Montserrat-Light";
  font-size: 14px;
  opacity: 0.5;
}

.register-screen .bg-login-image {
  height: 460px;
}

/*navbar-search*/
.topbar .navbar-search {
  width: 400px;
}

.navbar-search .btn {
  background: #325c5b;
  border: #325c5b;
  height: 38px;
}

#searchDropdown {
  color: #fff !important;
  background: #325c5b;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}

.topbar .navbar-search .input-group {
  width: 100%;
  margin-top: 2px;
}

/*.breadcrumb*/
.breadcrumb {
  padding: 0.75rem 0;
}

.breadcrumb a {
  color: #1fbbb8;
}

/* responsive css */

@media (max-width: 1599px) {

  /* manage venues */
  .manage-venues .table-search-bar .input-group {
    margin-bottom: 15px !important;
  }

  .manage-venues .table-search-bar .filter-reset-btn-group {
    max-width: 230px;
    flex: 0 0 222px;
  }
}

@media (max-width: 1540px) {

  /* puc-section */
  .past-performances .sm-box h3 {
    font-size: 26px;
  }

  .past-performances .sm-box h4 {
    font-size: 18px;
  }
}

@media (max-width: 1440px) {

  /* small-cards */
  .small-cards .box h3 {
    font-size: 25px;
  }

  .small-cards .box .arrow {
    right: 10px;
    bottom: 10px;
  }

  /* puc-section */
  .puc-section .event-section .event {
    padding: 0 0 0 70px;
  }

  .puc-section .event-section .event .profile-name {
    left: 0;
  }

  .past-performances .sm-box h3 {
    font-size: 24px;
    margin-top: 15px;
  }

  .past-performances .sm-box h4 {
    font-size: 16px;
  }
}

@media (max-width: 1280px) {

  /* table-search */
  .table-search-bar {
    margin: 0 -8px;
  }

  .table-search-bar .input-group {
    max-width: none;
    flex: 0 0 25%;
    /*  mobile responsive changes */
    margin: 0 !important;
    padding: 0 8px;
  }

  .table-search-bar .add-button-right {
    padding: 0 8px;
  }

  /* small-cards */
  .small-cards .box {
    padding: 20px 20px 20px 110px;
  }

  .small-cards .box i {
    left: 25px;
  }
}

@media (max-width: 1199px) {

  /* small-cards */
  .small-cards {
    padding: 0 0 15px;
  }

  .small-cards .box {
    margin-bottom: 15px;
  }

  /* puc-section */
  .puc-section {
    padding: 0;
  }

  .puc-section .box {
    margin-bottom: 30px;
  }

  .past-performances .sm-box h3 {
    font-size: 34px;
    margin-top: 10px;
  }

  .past-performances .sm-box h4 {
    font-size: 20px;
  }
}

@media (max-width: 999px) {

  /* puc-section */
  .past-performances .sm-box {
    margin: 0 0 15px;
  }

  .past-performances .sm-box h3 {
    margin-bottom: 5px;
  }

  .past-performances .sm-box img {
    right: 30px;
    bottom: 30px;
  }

  /* slider-section */
  .slider-section {
    padding-bottom: 40px;
    /* new mobile bug changes 29/mar */
  }
}

@media (max-width: 991px) {

  /* Login Page */
  .login-left {
    padding: 35px 20px;
  }

  /* table-search */
  .table-search-bar .input-group {
    max-width: none;
    flex: 0 0 50%;
    margin: 0 0 15px !important;
    padding: 0 8px;
  }

  .checkbox-group {
    margin-top: 20px;
  }

  /* register-screen */
  .register-screen .login-form-container .login-left {
    padding: 16px 22px;
  }
}

@media (max-width: 767px) {

  /* small-cards */
  .small-cards .box {
    padding: 20px 20px 20px 85px;
  }

  .small-cards .box i {
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    left: 15px;
  }

  .small-cards .box h3 {
    font-size: 20px;
  }

  .small-cards .box p {
    font-size: 14px;
  }

  /* Login Page */
  .login-screen .row {
    justify-content: center;
    margin: 0;
  }

  .login-form-container {
    order: 1;
    margin-top: -40px !important;
    height: auto !important;
    max-width: 90%;
  }

  .border1,
  .border2,
  .border3,
  .border4 {
    height: auto !important;
  }

  .login-bg-container {
    order: 0;
    flex: 0 0 50%;
    max-width: 475px;
  }

  .login-left {
    padding: 34px 20px 42px !important;
    margin: 0;
  }

  .bg-login-image {
    background: url("../images/login-img-mobil.png");
    background-position: top center;
    background-size: cover;
    width: 475px;
    height: 425px;
  }

  .border1:before,
  .border2:before,
  .border3:before,
  .border4:before {
    height: 5px;
    width: 25%;
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    content: "";
  }

  .border1:before {
    background: #8ea4ce;
  }

  .border2:before {
    background: #e8542c;
    left: 25%;
    border-left: solid 1px #fff;
  }

  .border3:before {
    background: #959e21;
    left: 50%;
    border-left: solid 1px #fff;
  }

  .border4:before {
    left: 75%;
    background: #7a64a9;
    border-left: solid 1px #fff;
  }

  .copy-right.text-center.mt-5 {
    margin-top: 0 !important;
  }

  /* Top Bar */
  .topbar {
    margin-left: 0;
  }

  .topbar .nav-item .nav-link {
    margin: 0 5px;
  }

  .topbar.navbar-light .navbar-nav .nav-item.user-dropdown .nav-link {
    padding-right: 0;
  }

  /* Side Bar */
  .sidebar {
    position: absolute;
    left: -135px;
    width: 135px !important;
  }

  .sidebar.toggled {
    position: absolute;
    left: 0;
    width: 135px !important;
    z-index: 9;
    padding: 63px 0 0;
    min-height: 100%;
    height: auto;
    top: 0;
    overflow: visible;
  }

  /* manage venues */
  .manage-venues .table th:nth-child(1) {
    min-width: 150px;
  }

  .manage-venues .table th:nth-child(2) {
    min-width: 150px;
  }

  .manage-venues .table th:nth-child(3) {
    min-width: 150px;
  }

  .manage-venues .table th:nth-child(4) {
    min-width: 150px;
  }

  .manage-venues .table th:nth-child(5) {
    min-width: 150px;
  }

  .manage-venues .table th:nth-child(6) {
    min-width: 100px;
  }

  /* table-search */
  .checkbox-group .custom-checkbox {
    margin: 0 15px 0 0;
  }

  .performance-section .card-body {
    padding: 15px;
  }

  .performance-section .card {
    height: auto !important;
  }
}

@media (max-width: 475px) {
  /* Login Page */

  .login-left {
    padding: 30px 0;
  }

  .forgot-password {
    margin-bottom: 20px;
  }

  /* Top Bar */
  .logo img {
    max-width: 100px;
  }

  .topbar .nav-item .nav-link {
    margin: 0 2px;
  }

  .navbar {
    padding: 0.5rem 5px;
  }

  #searchDropdown {
    width: 30px;
    height: 30px;
  }

  .menu-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* table-search */
  .table-search-bar .input-group {
    max-width: none;
    flex: 0 0 100%;
    margin: 0 0 15px !important;
    padding: 0 8px;
  }
}

@media (max-width: 374px) {
  .btn-primary {
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .bg-login-image {
    width: 361px;
    background-position: top right;
  }

  .login-bg-container {
    flex: 0 0 360px;
    max-width: 360px;
  }

  .login-screen .row {
    margin: 0 -14px;
  }
}

/* error message */
.error {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
  font-family: "Montserrat-Regular";
}

.mw-195 {
  min-width: 195px;
}

/* react-calendar */
.react-calendar .react-calendar__navigation {
  margin-bottom: 0;
  height: auto;
}

.react-calendar {
  border: 1px solid transparent !important;
  font-family: inherit !important;
  line-height: inherit !important;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
  -moz-box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
  box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
  font-size: 12px;
  margin-bottom: 30px;
}

.react-calendar__navigation button:first-of-type,
.react-calendar__navigation button:last-of-type {
  display: none;
}

.react-calendar__navigation button:nth-of-type(2),
.react-calendar__navigation button:nth-of-type(4) {
  padding: 0;
  outline: none;
  border: none;
  color: #fff;
  float: left;
  width: 11%;
  transition: color 0.2s;
  background: #528483;
  border-radius: 5px;
  height: 28px;
  font-size: 16px;
  min-width: 33px;
  position: relative;
  overflow: hidden;
  font-size: 0;
  color: transparent;
}

.react-calendar__navigation button:hover:nth-of-type(2),
.react-calendar__navigation button:hover:nth-of-type(4) {
  background-color: #528483 !important;
}

.react-calendar__navigation button:nth-of-type(2)::before,
.react-calendar__navigation button:nth-of-type(4)::before {
  content: "\f104";
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-size: 18px;
  font-weight: 900;
}

.react-calendar__navigation button:nth-of-type(4)::before {
  content: "\f105";
}

.react-calendar__navigation button:nth-of-type(3) {
  padding: 2px 10px;
  font-family: "Montserrat-Bold";
  font-size: 17px;
  color: #528483;
  float: left;
  width: 68%;
  margin: 0 0 10px;
  background: #cadad9;
  border-radius: 5px;
  height: 28px;
  line-height: 26px;
  margin: 0 10px;
  text-transform: uppercase;
}

.react-calendar__month-view__weekdays {
  font-family: "Montserrat-Bold";
  color: #2b2d30;
  font-size: 12px !important;
  border-top: solid 1px #f1f5f5;
  border-bottom: solid 1px #f1f5f5;
  margin: 8px 0;
  padding: 5px 0;
}

.react-calendar__month-view__weekdays abbr[title] {
  text-decoration: none;
}

.react-calendar__month-view__weekdays__weekday {
  padding: 2px !important;
}

.react-calendar__tile--now {
  background: #528483 !important;
  color: #fff;
  border-radius: 5px;
}

/* table-listing */
/*border line bug fixes 15/2/22*/
.table-listing-outer .MuiTable-root {
  border-radius: 0px;
  margin-bottom: 10px !important;
  width: 100% !important;
}

.table-listing-outer .show-venue-listing-table {
  min-height: 80px;
  max-height: 350px;
  height: auto !important;
  display: inline-flex;
}

/* Add venue  */
.marginBootomGoogleMap {
  margin-bottom: 30px !important;
}

/*border line bug fixes 15/2/22*/
.MuiPaper-elevation2 {
  box-shadow: none !important;
}

.table-listing-outer .MuiTableCell-root {
  padding: 0.75rem;
  border-bottom: 1px solid transparent;
}

.table-listing-outer .MuiTable-root thead tr th {
  background: #dce6e6;
  color: #000;
  font-size: 14px;
  border: 1px solid #c0d2d2;
  border-bottom: solid 5px #b2c8c8;
  /* white-space: nowrap; */
  position: inherit;
  font-family: "Montserrat-Light";
  font-weight: 600;
  padding-left: 10px;
}

.table-listing-outer .MuiTable-root thead tr th .material-icons {
  font-size: 16px;
}

.table-listing-outer .MuiTable-root tbody tr td {
  font-family: "Montserrat-Light" !important;
  font-size: 14px;
  border: 1px solid #c0d2d2;
  word-break: break-word;
  overflow: visible;
}

.internal-aditional-contact thead tr th:last-child,
.internal-aditional-contact tbody tr td:last-child {
  min-width: 50px !important;
  width: 50px !important;
}

.internal-aditional-contact .Component-horizontalScrollContainer-5 div:first-of-type {
  -webkit-border-top-left-radius: 0 !important;
  -webkit-border-top-right-radius: 0 !important;
  -moz-border-radius-topleft: 0 !important;
  -moz-border-radius-topright: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.internal-aditional-contact tbody tr td:last-child div {
  justify-content: center !important;
}

.add-contact-modal .modal-body .table-listing-outer .MuiTable-root tbody tr td {
  word-break: normal;
}

.add-contact-modal .modal-body .table-listing-outer .MuiTable-root tbody tr td div {
  display: block !important;
}

.common-table .MuiTable-root tbody tr:nth-child(even) {
  background-color: #f6f9f9 !important;
}

.common-table .MuiTable-root tbody {
  border: 1px solid #c0d2d2;
}

.table-listing-outer .MuiTable-root tbody .action a {
  font-size: 14px;
  margin: 0 10px;
}

.table-listing-outer .MuiTableFooter-root tr td {
  border-bottom: 1px solid transparent;
}

.table-listing-outer .MuiButtonBase-root .material-icons {
  font-size: 18px;
  color: #528483;
}

.table-listing-outer .MuiSvgIcon-root {
  font-size: 18px;
  color: #528483;
}

.table-listing-outer .MuiButtonBase-root:first-of-type .edit {
  color: #528483;
}

.table-listing-outer .MuiButtonBase-root:last-of-type .Clear {
  color: #e8542c;
}

.Component-horizontalScrollContainer-5 div:first-of-type {
  -webkit-border-top-left-radius: 11px;
  -webkit-border-top-right-radius: 11px;
  -moz-border-radius-topleft: 11px;
  -moz-border-radius-topright: 11px;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
}

/* arrow-listing */
.arrow-listing-bg {
  position: relative;
}

.arrow-listing-bg::after {
  content: "";
  background: #fff url(../images/svg/Tickets.svg) no-repeat right bottom !important;
  background-size: 50% 50% !important;
  width: 480px;
  height: 480px;
  position: absolute;
  right: 15px;
  bottom: 15px;
  opacity: 0.1;
  z-index: 1;
}

.arrow-listing ul {
  margin: 0;
  padding: 0;
}

.arrow-listing ul li {
  list-style-type: none;
}

.arrow-listing ul li a {
  position: relative;
  padding: 6px 5px 6px 25px;
  z-index: 2;
}

.arrow-listing ul li a:hover {
  text-decoration: none;
}

.arrow-listing ul li a i {
  font-size: 12px;
  position: absolute;
  top: 10px;
  left: 5px;
}

.table-scroll {
  height: 193px;
}

.horizontal-scroll .mCustomScrollBox {
  overflow-x: auto;
  overflow-y: hidden;
}

@media (max-width: 767px) {
  .dn-mob {
    display: none !important;
  }
}

.action-btn.select {
  padding: 5px 8px;
  margin: 5px 2px !important;
  display: inline-block;
  vertical-align: top;
}

.allocations-search-bar .btn-primary i {
  margin-right: 2px;
}

.allocations-search-bar {
  display: flex;
}

.allocations-search-bar .input-group {
  width: 270px !important;
  margin-bottom: 15px;
}

.allocations-search-bar-new .input-group {
  width: 220px !important;
}

.allocations-search-bar .filter-reset-btn-group .btn {
  width: auto !important;
  height: 36px;
}

.allocations-search-bar .w200 {
  width: 200px;
}

.allocations-search-bar .w215 {
  width: 215px;
}

.allocations-search-bar .mw300 {
  min-width: 300px;
  width: 100%;
}

.regionmw-200 {
  max-width: 200px;
}

.allocations-search-bar label {
  padding: 7px 10px 4px 0;
}

.allocations-search-bar .input-group>.form-control:not(:first-child) {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.allocations-table thead th:first-of-type {
  width: 75px !important;
  min-width: 75px !important;
}

.allocations-table thead th:last-of-type {
  width: 330px !important;
  min-width: 330px !important;
}

@media (max-width: 1599px) {
  .allocations-search-bar .filter-reset-btn-group {
    max-width: auto !important;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 991px) {
  .table-search-bar .input-group {
    max-width: none;
    flex: 0 0 auto;
  }
}

@media (max-width: 767px) {
  .allocations-search-bar .input-group {
    width: 100%;
  }
}

.al-checkbox {
  padding-left: 20px;
  margin-left: 20px;
}

.al-checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}

.al-checkbox label span {
  top: -3px;
  position: relative;
  font-family: "Montserrat-Light";
  font-size: 14px;
}

.al-checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.al-checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
}

.al-checkbox input[type="checkbox"] {
  opacity: 0;
  z-index: 1;
  position: absolute;
  left: 0;
}

.al-checkbox input[type="checkbox"]:focus+label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.al-checkbox input[type="checkbox"]:checked+label::after {
  font-family: "FontAwesome";
  content: "\f00c";
}

.al-checkbox input[type="checkbox"]:disabled+label {
  opacity: 0.65;
}

.al-checkbox input[type="checkbox"]:disabled+label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}

.al-checkbox.checkbox-circle label::before {
  border-radius: 50%;
}

.al-checkbox.checkbox-inline {
  margin-top: 0;
}

.checkbox-success input[type="checkbox"]:checked+label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked+label::after {
  color: #fff;
}

.al-tab {
  background: #f7f7f7;
  padding-top: 1px;
  margin-bottom: 15px;
}

.al-tab .scroll {
  height: 285px;
  padding: 10px 0;
}

.none-tab h2 {
  font-size: 15px;
  color: #528483;
  padding: 0.5rem 1rem 0.5rem 0;
}

.dis-tab .nav-link {
  display: block;
  padding: 0.5rem 0.5rem;
  font-size: 13px;
}

.show-capacity-outer {
  position: relative;
}

.show-capacity-text {
  position: absolute;
  right: 0;
  top: 0;
}

.show-capacity .al-checkbox {
  position: relative;
  padding-right: 105px;
}

.show-capacity .small-input {
  position: absolute;
  right: 15px;
  top: 0;
}

.show-capacity .small-input .form-control {
  font-family: "Montserrat-Light";
  font-size: 12px;
  width: 70px;
  position: absolute;
  right: 15px;
  top: 0;
  height: 20px;
}

.allocation-cust-table th:nth-child(6) {
  width: 60px !important;
  min-width: 60px !important;
}

.w-90 {
  width: 90px;
}

.show-capacity-text-mob {
  display: none;
}

@media (max-width: 991px) {
  .t-width-mob {
    width: 900px;
  }
}

@media (max-width: 480px) {
  .show-capacity .al-checkbox {
    position: relative;
    padding-right: 0;
  }

  .show-capacity-text {
    display: none;
  }

  .show-capacity .small-input {
    position: relative;
    height: 35px;
    width: 70px;
    left: 0;
    top: 5px;
    margin-bottom: 15px;
  }

  .show-capacity .small-input .form-control {
    right: auto;
    left: 5px;
  }

  .show-capacity-text-mob {
    display: block;
    margin-top: -10px;
    margin-left: 5px;
  }
}

/* tecketing */
.input-group.w-auto {
  width: auto;
  max-width: none;
}

.w260 {
  width: 260px;
}

.ticketing-btn .btn.btn-primary {
  width: auto;
}

.xl-size {
  background: green;
  color: #fff;
  padding: 0 5px;
  display: inline-block;
  font-weight: 600;
  border-radius: 3px;
}

/* .ticketing-table th {
  width: auto !important;
}

.ticketing-table th:nth-child(1) {
  width: 100px !important;
}

.ticketing-table th:nth-child(4) {
  width: 100px !important;
} */

.ticketing-footer .form-control {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: 150px;
}

/* editsales-table */
.editsales-table th:nth-child(1) {
  width: auto !important;
}

.editsales-table th:nth-child(2) {
  width: auto !important;
}

.editsales-table th:nth-child(3) {
  width: 100px !important;
}

.editsales-table th:nth-child(4) {
  width: 140px !important;
}

.editsales-table th:nth-child(5) {
  width: 50px !important;
}

.editsales-table th:nth-child(6) {
  width: 70px !important;
}

.editsales-table th:nth-child(7) {
  width: 140px !important;
}

.editsales-table th:nth-child(8) {
  width: 80px !important;
}

/* rebate-table */

.rebate-table th:nth-child(1) {
  width: 200px !important;
}

.table-search-bar .input-group button.font-Regular {
  font-family: "Montserrat-Regular";
}

.rebate-table2 th:nth-child(2) {
  width: 300px !important;
}

.rebate-table2 th:nth-child(3) {
  width: 50px !important;
}

/* sidebar */

.sidebar .nav-item.menu5 .nav-link[aria-expanded="true"] {
  background: #8ea4ce;
  color: #fff;
}

.sidebar .nav-item.menu5 .nav-link[aria-expanded="true"] span.icon {
  background: url(../images/svg/Tickets-white.svg) no-repeat top center;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item.active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item.active {
  color: #3a3b45;
  font-weight: normal;
}

@media (max-width: 767px) {

  /* sidebar */
  .sidebar .nav-item .collapse .collapse-inner .collapse-item,
  .sidebar .nav-item .collapsing .collapse-inner .collapse-item {
    white-space: normal;
    min-width: 160px;
  }

  .allocations-search-bar .input-group {
    width: 100%;
  }

  /* tecketing */
  .input-group.w-auto {
    max-width: 100% !important;
  }
}

.split-view-table table tr td input[type="number"] {
  min-width: 90px;
  width: 100%;
}

.split-view-table .action a {
  font-size: 20px !important;
}

.split-view-table .action {
  min-width: 105px;
}

.colspan-bg {
  background: #eee !important;
}

.inside-table {
  margin-bottom: 0 !important;
}

.price-label {
  padding: 10px;
}

.inside-table thead tr th {
  border-bottom: solid 0px transparent !important;
  white-space: normal !important;
}

.table .mw-100 {
  width: 150px;
  min-width: 150px;
  max-width: 300px !important;
}

.mw-130 {
  width: 130px;
  min-width: 130px;
  max-width: 130px !important;
}

.mb-table .table thead th {
  vertical-align: middle;
}

/* allocate-ticketes-tbl */

.allocate-ticketes-tbl {
  border: 1px solid #c0d2d2 !important;
  border-radius: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.allocate-ticketes-tbl th {
  vertical-align: top !important;
}

.allocate-ticketes-tbl th br {
  display: none;
}

.allocate-ticketes-tbl th span {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  font-size: 16px;
  margin: 0 !important;
  padding: 5px;
}

.allocate-ticketes-tbl td {
  min-width: 100px;
}

.allocate-ticketes-tbl .action-btn.select {
  color: #fff !important;
  background-color: #528483;
  border-color: #528483;
  white-space: nowrap;
}

.allocate-ticketes-tbl .action {
  text-align: center;
}

.allocate-ticketes-tbl .valign-middel {
  vertical-align: middle !important;
  min-width: auto !important;
}

.allocate-ticketes-tbl .action-btn {
  font-size: 12px !important;
}

/* .allocate-ticketes-tbl .form-control {
  min-width: 80px;

} */

.allocate-tickets-col td:nth-child(4) select.form-control {
  width: 85px;
}

.allocate-ticketes-tbl .action-btn.edit {
  background: #528483 !important;
  color: #fff !important;
}

.allocate-ticketes-tbl .action-btn.plus {
  background: #959e21 !important;
  color: #fff !important;
}

.allocate-ticketes-tbl .price {
  min-width: 132px;
}

.allocate-ticketes-tbl .price .trash {
  color: #e8542c !important;
  font-size: 16px !important;
}

.plus-input .fa-plus {
  display: inline-block;
  cursor: pointer;
}

.plus-input .fa-minus {
  display: none;
  cursor: pointer;
}

.add-value {
  display: none;
  margin: 5px 0 0;
}

.allocate-ticketes-tbl .add-value .form-control {
  width: 50px;
  margin: 0 auto;
  min-width: 50px;
}

.plus-input.act .fa-plus {
  display: none;
}

.plus-input.act .fa-minus {
  display: inline-block;
}

.plus-input.act .add-value {
  display: block;
}

.allocate-ticketes-tbl .place {
  color: #fff !important;
  background: #e8542c !important;
  font-size: 12px !important;
  padding: 2px 5px;
  margin: 5px 0 0 !important;
  border-radius: 3px;
  text-decoration: none;
}

.allocate-ticketes-tbl .general-action {
  display: block;
  text-align: center;
  margin: 5px 0 0;
}

.allocate-ticketes-tbl .general-action .trash {
  background: #e8542c !important;
  color: #fff !important;
}

/* allocate-ticketes-tbl end */

.ta-section .tab-content {
  padding: 20px 0 0;
}

.editable-cell {
  transition: 0.3s all linear;
}

.editable-cell .editable-field {
  display: flex;
  justify-content: space-between;
}

.editable-cell .editable-input {
  border: none;
  font-size: inherit;
  background: inherit;
  color: inherit;
  transition: 0.3s all linear;
}

.editable-cell .editable-input:focus {
  outline: none;
  background: white;
  color: #545454;
}

.editable-cell .edit-button {
  cursor: pointer;
  font-size: 1em;
  position: relative;
  top: 5px;
}

.editable-cell .hide {
  visibility: hidden !important;
}

/* top-sub-menu-icon M3 25may2021 */
.top-sub-menu-icon {
  display: inline-block;
  margin-right: 10px;
  width: 20px;
}

.top-sub-menu-icon img {
  max-width: 100%;
}

/* top-sub-menu-icon M3 25may2021 /end */

/* top search section changes 31may2021 */
.search-filter .btn {
  background: #f8f9fa !important;
  color: #000 !important;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: -5px;
  border: none;
}

.search-filter-sm .form-control {
  width: 125px;
  font-weight: 600;
  color: #000;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: -6px;
  border-color: #343a40;
}

.bor-left-none {
  border-left: transparent;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.search-drop {
  position: static !important;
}

.topbar .dropdown.search-drop .dropdown-menu {
  width: calc(100% - 1.5rem);
  right: 0.75rem;
}

.topbar .dropdown.search-drop .input-group {
  width: 100%;
}

@media (min-width: 1200px) {

  .past-performances,
  .event-section,
  .calendar-section {
    height: 326px;
  }

  .artists-by-genre .box h3 {
    min-height: 48px;
  }
}

@media (min-width: 1200px) and (max-width: 1273px) {
  .puc-section .event-section .event p:last-child {
    margin-bottom: 10px;
  }
}

/* top search section changes 31may2021 / end */

.edit-artist-text {
  padding: 15px 30px 15px;
  border: solid 1px #dee2e6;
  margin-top: -21px;
}

.nav-tabs .nav-item {
  margin: 0 5px 0 0;
}

.nav-tabs .nav-link {
  border: solid 1px #e9ecef !important;
  border-bottom: solid 1px transparent !important;
}

.edit-artist-tabs .nav-tabs .nav-item.show .nav-link,
.edit-artist-tabs .nav-tabs .nav-link.active {
  background: #528483;
  color: #fff;
  border-color: #528483 #528483 #fff;
}

/* Contacts pages/ edit artist */
.artist-pic {
  max-width: 150px;
}

.artist-pic img {
  /* max-width:100%; */
  vertical-align: unset !important;
  border-style: none;
}

.artist-box {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 0px;
  border: solid 1px #f1f1f1;
  margin: 15px 0;
}

.artist-box span i {
  font-size: 50px;
  color: #528483;
}

.artist-box h2 {
  font-family: "Montserrat-SemiBold";
  font-size: 21px;
  color: #528483;
  margin: 15px 0 15px;
}

.edit-artist-text {
  padding: 15px 30px 15px;
  border: solid 1px #dee2e6;
  margin-top: -21px;
}

.tourlinks .btn {
  width: 100%;
  margin: 5px 0;
}

.past-performance-left .icon-txt {
  margin: 15px 0;
  border-bottom: solid 1px #ccc;
}

.past-performance-left .icon-txt .iconpic {
  font-size: 50px;
  margin-right: 15px;
}

.past-performance-left .icon-txt .iconpic.i1 {
  color: #4f8381;
}

.past-performance-left .icon-txt .iconpic.i2 {
  color: #8fa5cf;
  transform: rotate(-45deg);
}

.past-performance-left .icon-txt .iconpic.i3 {
  color: #e9552a;
}

.past-performance-left .icon-txt .iconpic.i4 {
  color: #959d20;
}

.past-performance-left .icon-txt h3 {
  color: #528483;
  font-family: "Montserrat-SemiBold";
  font-size: 18px;
  margin: 0;
}

.past-performance-left .icon-txt p {
  color: #000;
  font-family: "Montserrat-SemiBold";
  font-size: 22px;
  margin: 0;
}

.past-performance-left .icon-txt:last-child {
  border: none;
  margin: 0;
}

.related-artist-left .artist-pic {
  margin: 10px 0;
}

.segmenticons .segmenticon {
  margin: 0 10px;
  font-size: 30px;
  color: #4f8381;
}

.segmenticons .segmenticon span {
  display: block;
  font-size: 14px;
  text-align: center;
  color: #000;
}

.bor-none.mb-3 {
  border: none !important;
  margin-bottom: 30px !important;
}

.socialdata .iconpic {
  font-size: 50px;
  margin-right: 15px;
}

.socialdata p {
  color: #000;
  font-family: "Montserrat-SemiBold";
  font-size: 22px;
  margin: 0;
}

.socialdata .d-flex {
  margin-bottom: 10px !important;
}

.socialdata .i1 {
  color: #93c47d;
}

.socialdata .i2 {
  color: #003762;
}

.socialdata .i3 {
  color: #333333;
}

.socialdata .i4 {
  color: #6fa8dc;
}

.maxh110 {
  max-height: 110px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .related-artist-left .smrow {
    justify-content: center;
  }

  .related-artist-left .smrow .col-xl-6 {
    width: auto;
  }
}

.past-performance-left.space-more {
  height: 100%;
}

.past-performance-left.space-more .icon-txt {
  padding: 25px 0;
}

.past-performance-left.space-more .icon-txt .iconpic {
  margin-right: 30px;
}

.nav-tabs .nav-item {
  margin: 0 5px 0 0;
}

.nav-tabs .nav-link {
  border: solid 1px #e9ecef !important;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 2px;
}

.edit-artist-tabs .nav-tabs .nav-item.show .nav-link,
.edit-artist-tabs .nav-tabs .nav-link.active {
  background: #528483;
  color: #fff;
  border-color: #528483 #528483 #fff;
}

.circle-img {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 100%;
  border: none;
  text-align: center;
}

.related-artist-left .artist-pic .artist-name.text-center {
  margin: 5px 0 15px;
}

.artist-banner-section {
  background: url(../images/banner.jpg) no-repeat 0 0;
  background-size: cover;
  padding: 150px 50px;
  margin: 0 0 0;
  min-height: 330px;
  position: relative;
  border: solid 2px #f1f1f1;
}

.artist-banner-section .artist-title {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: normal;
}

.artist-banner-section:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
  position: absolute;
  z-index: 0;
}

.artist-banner-section .title.mt-3 {
  position: absolute;
  bottom: 50px;
  left: 320px;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.38);
  font-size: 50px;
  color: #fff;
  z-index: 2;
}

.artist-banner-section .title.mt-3 .heding-icon img {
  width: 60px;
}

.artist-banner-section svg {
  width: 70px;
  height: 70px;
}

.artist-banner-section .profile {
  width: 275px;
  height: 275px;
  border-radius: 50%;
  border: solid 10px rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.21);
}

@media (max-width: 767px) {
  .artist-banner-section .profile {
    width: 180px;
    height: 180px;
  }
}

.artist-banner-section .profile img {
  width: 100%;
}

.cls-1 {
  fill: #fff;
}

@media (max-width: 767px) {
  .artist-banner-section .title.mt-3 {
    font-size: 30px;
    left: 20px;
    bottom: 20px;
  }

  .artist-banner-section svg {
    width: 40px;
    height: 40px;
  }
}

.tags span,
span.tags {
  color: #fff !important;
  background: #8ea4ce !important;
  padding: 3px 5px;
  border-radius: 3px;
  display: inline-block;
  font-size: 12px;
  margin: 2px 2px;
  white-space: wrap;
}

.nav-link.tabdropdown {
  height: 40px;
  padding: 0;
}

.tabdropdown button.btn-secondary {
  background: no-repeat;
  border: none;
  color: #528483;
  padding: 0;
  width: 45px;
  height: 40px;
  margin: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.tabdropdown .show button.btn-secondary {
  background: #528483;
  color: #fff;
  border-color: #528483 #528483 #fff;
  box-shadow: none !important;
}

.tabdropdown .dropdown-menu.show {
  right: 0 !important;
  left: auto !important;
  transform: none !important;
  top: 40px !important;
}

.tabdropdown {
  height: 40px;
  padding: 0;
}

.form-control.h150 {
  height: 150px !important;
}

.select2-container--default .select2-selection--multiple {
  background: #f6f7f9 url(../images/select-arrow.svg) no-repeat right 12px !important;
  border: 1px solid #bacecd;
  min-height: 38px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  font-size: 12px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #bacecd;
}

.genre-add-row {
  position: relative;
}

.add-companies {
  padding: 5px 10px 0;
  border: solid 1px #dee2e6;
  position: relative;
  margin: 0 0 15px;
}

.close.add-row {
  position: absolute;
  right: -45px;
  height: 38px;
  top: 36px;
}

.close.add-row2 {
  height: 38px;
  float: left;
  margin-left: 0;
}

@media (max-width: 991px) {
  .add-companies {
    margin-right: 0px;
  }

  .close.add-row {
    right: 16px;
  }
}

@media (max-width: 575px) {
  .addcompany-button {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
  }

  .addcompany-button span {
    color: #666;
  }

  .add-companies {
    margin-right: 0;
  }

  .close.add-row {
    position: static;
    float: none;
  }
}

.select2-container--default .select2-selection--multiple {
  background: #f6f7f9 url(../images/select-arrow.svg) no-repeat right 12px !important;
  border: 1px solid #bacecd !important;
  min-height: 38px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  font-size: 12px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #bacecd;
}

/*contacts/edit-artist /end */

/* manage artist */
.w50 {
  width: 80px;
}

.table-listing-outer .manage-artists-tbl .table tbody tr td {
  vertical-align: middle;
}

.smcircle-img {
  width: 80px;
  height: 80px;
  border-radius: 100% !important;
  overflow: hidden;
  margin: 0 auto;
}

.artists-by-genre .box {
  background: #528483;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  border-radius: 8px;
  padding: 20px 20px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  margin: 0 0;
  text-align: center;
}

.artists-by-genre .box2 {
  background: #969b32;
}

.artists-by-genre .box3 {
  background: #42162d;
}

.artists-by-genre .box4 {
  background: #92a1cb;
}

.artists-by-genre .row .outer-box .box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  z-index: -1;
  height: 107px;
  width: 0;
  transition: 0.5s;
  border-radius: 8px 0 0 8px;
  width: 0%;
  /* height: 100%; */
}

.artists-by-genre .row .outer-box .box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  z-index: -1;
  width: 0;
  height: 107px;
  transition: 0.5s;
  border-radius: 0 8px 8px 0;
  width: 0%;
  /* height: 100%; */
}

.artists-by-genre .box h3 {
  font-family: "Montserrat-SemiBold";
  font-size: 26px;
  margin-bottom: 0;
}

.artists-by-genre .box p {
  font-family: "Montserrat-Bold";
  font-size: 36px;
  margin-bottom: 5px;
}

.artists-by-genre .box:hover {
  text-decoration: none;
}

.artists-by-genre .box i {
  background: #fff;
  color: #528483;
  font-size: 30px;
  width: 62px;
  height: 62px;
  line-height: 62px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 35px;
  top: 20px;
}

.artists-by-genre .box .arrow {
  position: absolute;
  right: 20px;
  bottom: 15px;
}

.artists-by-genre .row .outer-box:hover .box1::before {
  background: #2d4948;
  width: 50%;
}

.artists-by-genre .row .outer-box:hover .box1::after {
  background: #2d4948;
  width: 50%;
}

.artists-by-genre .row .outer-box:hover .box2::before {
  background: #696d23;
  width: 50%;
}

.artists-by-genre .row .outer-box:hover .box2::after {
  background: #696d23;
  width: 50%;
}

.artists-by-genre .row .outer-box:hover .box3::before {
  background: #250c19;
  width: 50%;
}

.artists-by-genre .row .outer-box:hover .box3::after {
  background: #250c19;
  width: 50%;
}

.artists-by-genre .row .outer-box:hover .box4::before {
  background: #687391;
  width: 50%;
}

.artists-by-genre .row .outer-box:hover .box4::after {
  background: #687391;
  width: 50%;
}

.graph {
  padding: 15px;
  background: #fff;
  border-radius: 15px;
  height: 320px;
  display: table;
  width: 100%;
}

.graph span {
  display: table-cell;
  vertical-align: bottom;
}

.graph img {
  width: 100%;
}

.outer-toppad {
  height: 320px;
  margin-top: 58px;
}

.outer-box.outer-box-mb {
  /* margin: 0 0 60px;? */
  margin: 0 0 12px;
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .artists-by-genre .box {
    margin: 10px 0;
    padding: 20px 13px;
  }

  .artists-by-genre .box h3 {
    font-size: 20px;
  }

  .box1,
  .box3 {
    margin-top: -7px !important;
  }
}

@media (max-width: 1200px) {
  .d-sm-flex.d-ddm-none.align-items-center.justify-content-center.mb-5 {
    display: none !important;
  }

  .outer-toppad {
    height: auto;
    margin-top: 0;
  }

  .outer-box,
  .outer-box.outer-box-mb {
    margin: 0 0 30px;
  }

  .graph {
    height: auto;
    margin-bottom: 30px;
  }

  .artists-by-genre.mb-5 {
    margin-bottom: 0 !important;
  }
}

.ticketes-allocation-hed .title {
  margin: 0 0 5px;
}

.ticketes-allocation-hed h3.title {
  color: #0b0e0e;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.ticketes-allocation-hed .heding-icon {
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 0 0 0 30px;
  position: relative;
}

.ticketes-allocation-hed .heding-icon img {
  width: 20px;
  margin: 0 10px 0 0;
  position: absolute;
  left: 0;
  top: 0;
}

.font20 {
  font-size: 20px !important;
}

.icon-btns {
  margin: 5px 0 0;
}

.icon-btns a {
  margin: 0 5px;
}

.social-section .i1,
.social-section .i2,
.social-section .i3,
.social-section .i4 {
  font-size: 22px;
  margin: 0 5px 0 0;
  float: left;
}

.social-section .i1 {
  color: #6fa8dc;
}

.social-section .i2 {
  color: #003762;
}

.social-section .i3 {
  color: #333333;
}

.social-section .i4 {
  color: #93c47d;
}

.info-artist-information {
  border: solid 1px #ccc;
  border-radius: 5px;
  background: #f1f1f1;
  min-width: 320px;
  min-height: 100%;
}

.info-artist .artist-name.text-center {
  line-height: 30px;
}

.info-artist .circle-img {
  margin: 0 auto;
}

.word-break {
  word-break: break-all;
}

/* manage artist /end */

.form-box.form-box2 {
  background: #fff;
  padding: 15px 15px 0;
  border: solid 1px #ccc;
  margin: 15px 0 30px;
}

.date .input-group-addon {
  position: absolute;
  right: 1px;
  top: 1px;
  height: 36px;
  width: 36px;
  text-align: center;
  line-height: 38px;
  border-left: solid 1px #ccc;
  color: #999;
}

.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.today.day {
  background: #ccc !important;
}

.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after,
.input-group:not(.has-validation)>.custom-select:not(:last-child),
.input-group:not(.has-validation)>.form-control:not(:last-child) {
  border-radius: 5px !important;
}

#one,
#two {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1420px) {
  .min-height-label {
    min-height: 40px;
  }
}

/* tab resposive fixes */
@media (max-width: 991px) {
  .ta-section .nav.nav-tabs {
    margin: 0 -5px;
    flex-wrap: wrap;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .ta-section .nav.nav-tabs .nav-item {
    margin: 0 5px 0 0;
    flex: 0 0 50%;
    margin: 0;
    padding: 5px;
    margin: 0;
    max-width: 50%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ta-section .nav.nav-tabs .nav-item {
    margin: 0 5px 0 0;
    flex: 0 0 100%;
    margin: 0;
    padding: 5px;
    margin: 0;
    max-width: 100%;
    text-align: center;
  }
}

/* tab resposive fixes /end */
.table-search-bar.tours-serch .input-group .form-control {
  max-width: 180px;
}

.table-search-bar.tours-serch .input-group {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  margin-bottom: 0 !important;
}

.table-search-bar.tours-serch .input-group .btn.btn-primary {
  width: auto;
}

@media (max-width: 991px) {
  .table-search-bar.tours-serch .input-group {
    margin: 10px 0 0 !important;
  }
}

@media (max-width: 767px) {
  .table-search-bar.tours-serch .input-group {
    width: 100%;
    flex: 0 0 100%;
  }

  .table-search-bar.tours-serch .input-group .form-control {
    max-width: 100%;
  }

  .table-search-bar.tours-serch .input-group button {
    width: 100%;
  }

  .table-search-bar.tours-serch .d-flex.flex-wrap {
    width: 100%;
  }

  .table-search-bar.tours-serch .input-group .btn.btn-primary {
    width: 100%;
  }

  .info-artist .d-flex {
    display: block !important;
  }

  .info-artist .d-flex .artist-pic {
    margin: 0 auto;
  }

  .info-artist .d-flex .artist-name.info-artist-information {
    margin: 15px 0 0 0 !important;
    min-width: 10px;
  }

  .info-artist.mb-3.p-3 {
    padding: 15px 0 !important;
  }
}

._loading_overlay_content {
  top: 50%;
  left: 50%;
  position: fixed;
}

.dropdown-toggle::after {
  font-size: 25px;
  margin-bottom: -5px;
}

.mapped-item-tbl table td:nth-child(1),
.mapped-item-tbl table td:nth-child(3),
.mapped-item-tbl table td:nth-child(8) {
  white-space: nowrap;
}

.table-listing-outer .table tbody tr th.action-width,
.table-listing-outer .table tbody tr td.action-width {
  min-width: 40px !important;
  max-width: 40px !important;
  width: 40px !important;
}

.table-listing-outer .csvtable .table tbody tr .action,
.table-listing-outer .view-map-rules .table tbody tr .action {
  min-width: 40px !important;
  max-width: 40px !important;
  width: 40px !important;
}

/* tab pages tab ui changes 11jun2021 */

.form-box.form-box2,
.bg-box {
  background: #fff;
  padding: 1.5rem;
  margin: 15px 0 6px;
  box-shadow: 0px 0px 30px 0px rgba(180, 180, 178, 0.15);
  border-radius: 8px;
}

.edit-artist-text {
  padding: 0;
  border: none;
  background: transparent;
}

.edit-artist-text .event-card .event .profile-name {
  display: flex;
  flex-wrap: nowrap;
  padding: 15px;
}

.hospitality-tab .profile-name {
  padding: 5px 5px 5px 7px !important;
}

.tab-content {
  background: transparent;
}

.nav.nav-tabs {
  background: transparent !important;
}

.form-box.m-0.p-0 {
  background: transparent;
  box-shadow: none;
}

.nav.nav-tabs {
  background: #e7eaef;
  border: none !important;
  box-shadow: none !important;
}

.nav-tabs .nav-item {
  margin: 1px ​5px 0;
  border-radius: 5px;

  background: transparent;
}

.form-control.h150 {
  height: 80px !important;
}

/* tab changes end */

.border-none {
  border: none !important;
}

.Select.form-control {
  height: auto;
}

.form-control .Select-control {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: auto;
}

.Select-placeholder,
.Select--single>.Select-control .Select-value,
.Select-placeholder,
.Select--single>.Select-control .Select-value,
.form-control .Select-control .Select-placeholder {
  line-height: auto !important;
}

.Select--multi .Select-value {
  background-color: #ddd !important;
  border: 1px solid #ccc !important;
  color: #000 !important;
}

.Select--multi .Select-value-icon {
  border-right: 1px solid #ccc !important;
}

.wh100 {
  width: 100px !important;
  height: 100px !important;
  max-width: 100%;
}

.artist-pic.wh100 img {
  max-width: 100%;
}

.genre-add.genre-add-row.select-plus .close {
  border-radius: 100%;
  padding: 0;
  background: #528483;
  font-size: 18px !important;
  width: 20px;
  height: 20px;
  margin: 10px 0 0 5px;
  line-height: 15px;
  text-align: center;
}

.genre-add.genre-add-row.select-plus .fas.fa-info-circle {
  font-size: 21px;
  margin: 10px 0 0 5px;
  color: #666;
  cursor: pointer;
}

.genre-add.genre-add-row.select-plus .close i {
  font-size: 10px;
  margin: 0;
  position: relative;
}

.showhide {
  display: none;
}

.tour-popup {
  padding-right: 50px !important;
}

.select-plus button {
  margin-right: -28px !important;
}

.select-plus button.mr-0 {
  margin-right: 0 !important;
}

.slectinfoplus {
  width: 61px;
  margin-right: -61px;
}

.slectinfoplus div,
.slectinfoplus button {
  float: left;
}

.col-md-12.col-lg-10.col-xl-7.tblwidth {
  width: 626px;
  flex: 0 0 625px;
  max-width: 100%;
}

.tour-list .th2 {
  min-width: 80px;
  max-width: 80px;
  width: 80px;
}

.tour-list .th3 {
  min-width: 100px;
  max-width: 100px;
  width: 100px;
}

.tour-list .th4 {
  min-width: 80px;
  max-width: 80px;
  width: 80px;
}

.selectt {
  display: none;
}

.repeat-box {
  padding: 15px;
  border: solid 1px #ddd;
  margin: 30px 0 10px;
  background: #f9f9f9;
}

button.close.plus-repeat-box {
  border-radius: 100%;
  padding: 0;
  background: #528483;
  font-size: 18px !important;
  width: 40px;
  height: 40px;
  margin: 10px 0 0 5px;
  margin-right: 0px;
  opacity: 1;
  color: #fff;
  float: none;
}

@media (max-width: 767px) {
  .col-md-12.col-lg-10.col-xl-7.tblwidth {
    width: 626px;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.img-circle {
  border-radius: 100%;
  overflow: hidden;
  min-width: 40px;
  min-height: 40px;
  width: 200px;
  height: 200px;
}

.img-circle img {
  height: 100%;
  width: 100%;
}

.border-none {
  border: none !important;
}

.Select.form-control {
  height: auto;
}

.form-control .Select-control {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: auto;
}

.Select-placeholder,
.Select--single>.Select-control .Select-value,
.Select-placeholder,
.Select--single>.Select-control .Select-value,
.form-control .Select-control .Select-placeholder {
  line-height: auto !important;
}

.Select--multi .Select-value {
  background-color: #ddd !important;
  border: 1px solid #ccc !important;
  color: #000 !important;
}

.Select--multi .Select-value-icon {
  border-right: 1px solid #ccc !important;
}

.wh100 {
  width: 100px !important;
  height: 100px !important;
  max-width: 100%;
}

.artist-pic.wh100 img {
  max-width: 100%;
  object-fit: cover;
  min-height: 100%;
}

.status-span {
  background: #679ae7;
}

.status-span {
  padding: 3px 5px;
  color: #fff;
  border-radius: 3px;
  white-space: nowrap;
}

/* Manage Venue */
.seated {
  display: block !important;
  width: 100%;
  text-align: center;

}

.seated .fas.fa-user {
  color: #528483;
  font-size: 24px;
}

.seated i {
  margin: 0 5px;
}

.seated .fas.fa-chair {
  color: #6d1822;
  font-size: 22px;
}

.embed-responsive-21by9::before {
  padding-top: 20.857%;
}

/* Add Venue */
.venue-configtbl .th7 {
  max-width: 114px;
  min-width: 114px;
  width: 114px;
  white-space: nowrap;
}

.venue-configtbl .action-btn.m10 {
  margin: 0 10px !important;
}

.venue-configtbl .fl-rt {
  float: right;
}

.venue-configtbl tr.child {
  display: none;
}

.venue-configtbl tr.parent {
  display: table-row;
}

.venue-configtbl tr.open {
  display: table-row;
}

.dc-wrapper-border {
  padding: 15px;
  border: solid 1px #ddd;
  margin: 0 15px;
  border-radius: 5px;
}

.add {
  background: #ef876c;
  font-size: 16px;
  border: 0;
  padding: 0 15px;
  border-radius: 5px;
  margin: 0;
  opacity: 1;
  height: 38px;
  color: #fff;
}

#myModal2 .dataTables_paginate {
  display: none;
}

.d-flex.flex-wrap.mb-3.table-search-bar.allocations-search-bar.venue-updates {
  margin: 0;
}

.venue-updates .input-group {
  max-width: 200px !important;
  min-width: 200px;
  margin-bottom: 10px !important;
  padding: 0 3px;
}

.venue-updates .input-group.venueroom {
  max-width: 150px !important;
  min-width: 150px;
}

.venue-updates .input-group.updatedbtn {
  max-width: 85px !important;
  min-width: 85px;
}

.tableloop {
  border: solid 1px #ddd;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {

  .venue-updates .input-group,
  .venue-updates .input-group.venueroom {
    max-width: 100% !important;
  }
}

.modal-sub-heding {
  padding: 0;
  margin: 0 0 15px;
  font-size: 20px;
  color: #528483;
}

.default {
  margin: 0 0 10px 0;
  border-bottom: solid 1px #eee;
  padding-bottom: 10px;
}

select.form-control.slect2 {
  border: solid 1px #528483;
  height: 38px;
  border-radius: 5px;
  text-align: left;
  padding: 0 15px !important;
  color: #fff;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  font-family: "Montserrat-Regular", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #528483 url(../images/selectarow.jpg) no-repeat 90px 10px !important;
  width: 120px !important;
}

.MuiButtonBase-root.MuiIconButton-root.MuiIconButton-colorInherit:hover {
  background: none;
}

.venue-room table tr th:nth-child(1),
.venue-room table tr td:nth-child(1) {
  white-space: nowrap;
}

.error-span {
  color: #da0000;
}

.map-marker {
  color: #da0000;
}

/* Tour Module 02-07-21 */
span.close.plus-repeat-box {
  border-radius: 100%;
  padding: 0;
  background: #528483;
  font-size: 18px !important;
  width: 40px;
  height: 40px;
  margin: 10px 0 0 5px;
  margin-right: 0px;
  opacity: 1;
  color: #fff;
  float: none;
  display: inline-block;
  line-height: 40px;
  text-align: center;
}

button.react-time-picker__clear-button.react-time-picker__button {
  display: none;
}

button.react-time-picker__clock-button.react-time-picker__button {
  display: none;
}

.react-time-picker__wrapper {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  border: 0 !important;
}

.react-time-picker__clock {
  display: none !important;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 0% !important;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #314f4f !important;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;
  background-color: #314f4f !important;
  color: #f0f8ff;
}

/* Show Tab CSS */
.react-datepicker-wrapper {
  display: initial !important;
  padding: 0;
  border: 0;
}

/* Show Contacts Tab Css */
.ml-538 {
  margin-left: 538px !important;
  margin-top: -30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

/* / Ticket Prices UI fixes / */
.styles-module_Editext__button__sxYQX.styles-module_Editext__edit_button__310_J {
  background: #528483;
  color: #fff;
  font-size: 20px;
  padding: 1px 5px;
  border: none;
  border-radius: 5px;
  float: right;
}

.styles-module_Editext__button__sxYQX.styles-module_Editext__edit_button__310_J:hover {
  background: #528483;
  color: #fff;
  font-size: 20px;
  padding: 1px 5px;
  border: none;
  border-radius: 5px;
  float: right;
  opacity: 0.75;
}

.styles-module_Editext__view_container__3oSYx,
.styles-module_Editext__main_container__2azCD {
  justify-content: space-between;
  width: 100% !important;
}

.split-view-table .MuiToolbar-root.MuiToolbar-regular.MTableToolbar-root-8.MuiToolbar-gutters {
  padding: 0;
}

.split-view-table .MuiToolbar-root.MuiToolbar-regular.MTableToolbar-root-8.MuiToolbar-gutters .MuiButtonBase-root.MuiIconButton-root.MuiIconButton-colorInherit {
  padding: 0;
}

.split-view-table .MuiToolbar-root.MuiToolbar-regular.MTableToolbar-root-8.MuiToolbar-gutters {
  position: absolute;
  bottom: 0;
  width: auto;
  left: 0;
  z-index: 2;
}

.split-view-table .MuiPaper-root.MuiPaper-elevation2.MuiPaper-rounded {
  padding: 0 0 10px;
}

.split-view-table .MuiToolbar-root.MuiToolbar-regular.MTableToolbar-root-8.MuiToolbar-gutters .MTableToolbar-spacer-10 {
  display: none;
}

.styles-module_Editext__button__sxYQX.styles-module_Editext__save_button__1Dlwo,
.styles-module_Editext__button__sxYQX.styles-module_Editext__cancel_button__26sqr {
  background: #528483;
  color: #fff;
  font-size: 18px;
  padding: 5px 10px;
  border: none;
}

.styles-module_Editext__button__sxYQX.styles-module_Editext__save_button__1Dlwo:hover,
.styles-module_Editext__button__sxYQX.styles-module_Editext__cancel_button__26sqr:hover {
  background: #528483;
  color: #fff;
  font-size: 18px;
  padding: 5px 10px;
  border: none;
  opacity: 0.75;
}

.styles-module_Editext__input__2-M50 {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: 38px;
}

.MuiToolbar-root.MuiToolbar-regular.MuiTablePagination-toolbar.Component-paginationToolbar-2.MuiToolbar-gutters {
  padding-top: 10px;
}

.MuiToolbar-root.MuiToolbar-regular.MuiTablePagination-toolbar.Component-paginationToolbar-2.MuiToolbar-gutters button {
  padding-left: 5px;
  padding-right: 5px;
}

@media (min-width: 992px) and (max-width: 1300px) {
  .split-view-table .MuiPaper-root.MuiPaper-elevation2.MuiPaper-rounded {
    padding: 0 0 50px;
  }
}

@media (max-width: 767px) {
  .split-view-table .MuiPaper-root.MuiPaper-elevation2.MuiPaper-rounded {
    padding: 0 0 50px;
  }
}

/* / Ticket Prices UI fixes end/ / */

.full .custom-file {
  max-width: 100%;
  margin: 0 auto;
  display: block;
  height: 200px;
}

.full.form-group.files {
  padding: 0;
  border: dashed 2px #528483;
  height: 200px;
  margin-bottom: 0;
  background: #f8f8f8;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.full .custom-file-label.mb-0.pl-2 {
  max-width: 300px;
  margin: 30px auto;
  margin-bottom: 30px;
}

.files input {
  outline: 2px dashed #92b0b3;
  outline-offset: -10px;
  -webkit-transition: outline-offset 0.15s ease-in-out,
    background-color 0.15s linear;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
  padding: 196px 0px 0 0;
  text-align: left !important;
  margin: 0;
  width: 100% !important;
}

.files input:focus {
  outline: 2px dashed #92b0b3;
  outline-offset: -10px;
  -webkit-transition: outline-offset 0.15s ease-in-out,
    background-color 0.15s linear;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
  border: 1px solid #92b0b3;
}

.files {
  position: relative;
}

.files:after {
  pointer-events: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 50px;
  right: 0;
  height: 50px;
  content: "";
  background-image: url(../images/drag-drop.png);
  display: block;
  margin: 0 auto;
  background-size: 100%;
  background-repeat: no-repeat;
}

.color input {
  background-color: #f1f1f1;
}

.files:before {
  position: absolute;
  bottom: 40px;
  left: 0;
  pointer-events: none;
  width: 100%;
  right: 0;
  height: 17px;
  content: "Drop files here";
  display: block;
  margin: 0 auto;
  color: #528483;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}

.form-box .full label {
  font-family: "Montserrat-Regular";
}

.swal-button--cancel:focus {
  box-shadow: none;
}

/* /* swal popup / */
.swal-title {
  font-family: "Montserrat-Regular" !important;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 0 !important;
  padding-top: 0;
}

.swal-text {
  font-family: "Montserrat-Regular";
  font-size: 14px;
  text-align: center;
}

.swal-footer {
  text-align: center;
  margin-top: 0;
}

.swal-button.swal-button--confirm.swal-button--danger,
.swal-button.swal-button--cancel,
.swal-button.swal-button--cancel:hover {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-family: "Montserrat-Regular";
  background-color: #528483;
  border-color: #528483;
  color: #fff;
}

/** swal popup /*/

.fade.adddocumentmodal.modal {
  padding-right: 0 !important;
}

.adddocumentmodal .modal-dialog {
  max-width: 90% !important;
}

.adddocumentmodal .documentbox .list-group-item {
  background: transparent;
  border: none !important;
  padding: 0;
}

.adddocumentmodal .form-control {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: 38px;
}

.adddocumentmodal .card-title {
  font-size: 18px;
}

@media (max-width: 576px) {
  .adddocumentmodal .modal-dialog {
    max-width: 100% !important;
  }
}

.moreartist-popup .artist-pic {
  padding: 10px;
  width: auto;
  max-width: 16.66%;
  background: #f8f8f8;
  margin: 15px;
  border-radius: 5px;
  border: solid 1px #f1f1f1;
  width: 16.66%;
  text-align: center;
  justify-content: center;
  min-width: 184px;
}

.moreartist-popup .artist-pic .circle-img {
  margin: 0 auto 5px;
}

/* 18-08-21 Notes  */
.form-group .notes {
  font-family: "Montserrat-Light";
  font-size: 14px;
  cursor: pointer;
  color: #528483;
  margin-left: 15px;
}

/* 25-08-21 */
.zindex-2 {
  z-index: 2;
}

.zindex-3 {
  position: relative;
  z-index: 3;
}

.custom-error-msg-postion {
  margin-top: -11px;
  position: absolute;
}

.cursor {
  cursor: pointer;
}

.ManagePhaseModal table.MuiTable-root:first-child th:nth-child(1),
.ManagePhaseModal table.MuiTable-root:first-child td:nth-child(1) {
  width: 120px;
  min-width: 110px;
  max-width: 110px;
}

.ManagePhaseModal table.MuiTable-root:first-child th:nth-child(2),
.ManagePhaseModal table.MuiTable-root:first-child td:nth-child(2) {
  width: 230px;
  min-width: 200px;
  max-width: 200px;
}

.ManagePhaseModal table.MuiTable-root:first-child th:nth-child(3),
.ManagePhaseModal table.MuiTable-root:first-child td:nth-child(3) {
  width: 230px;
  min-width: 200px;
  max-width: 200px;
}

.ManagePhaseModal table.MuiTable-root:first-child th:last-child,
.ManagePhaseModal table.MuiTable-root:first-child td:last-child {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
}

.area-table-width table:first-child td:first-child {
  min-width: 150px;
  max-width: 150px;
  width: 150px;
}

.area-table-width.area-table-width2 tr td,
.area-table-width.area-table-width2 tr th {
  width: auto !important;
}

.place-top.type-dark {
  background: #6f6f6f !important;
  padding: 5px;
  font-size: 10px;
}

.place-top.type-dark::after {
  border-top-color: #6f6f6f !important;
}

.last-column table:first-child td:last-child,
.last-column table:first-child th:last-child {
  text-align: center;
}

.last-column table:first-child td:last-child div,
.last-column table:first-child th:last-child div {
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

tbody tr.MuiTableRow-root:not([index]) {
  height: auto !important;
}

.select-action-btn {
  margin-top: 0 !important;
}

.configuration-title .MuiToolbar-root {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.configuration-title .MuiIconButton-colorInherit {
  padding-right: 0 !important;
}

.error-left-aligin {
  margin-left: 26px;
}

.password-Font {
  font-size: 20px !important;
}

.dropsavoid .form-control {
  font-size: 13px;
}

.fc-view-harness {
  height: 500px !important;
  width: 100% !important;
}

.tenant-title {
  color: #000;
  font-family: "Montserrat-SemiBold";
  font-size: 21px;
  margin-bottom: -1px;
}

.btn-primary:disabled {
  background-color: #528483 !important;
  border-color: #528483 !important;
}

.fc-daygrid-event-harness {
  cursor: pointer;
}

.MTableToolbar-highlight-9 {
  color: black !important;
  background-color: white !important;
}

/* 27-09-21 */
.fc .fc-button-primary {
  background-color: #528483 !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-6 {
  margin-top: 6px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

/*  */
.action-btn.mt-0 {
  margin-top: 0 !important;
}

.main-form .manage-layouts .form-group {
  margin-bottom: 0 !important;
}

.main-form .manage-layouts.last-layout .p-4 {
  padding-bottom: 0 !important;
}

.set-price-col .col {
  max-width: 200px !important;
}

.configuration-title.MuiTable-root.MuiTableHead-root.MuiTableCell-alignRight {
  text-align: left !important;
  flex-direction: row-reverse;
}

.react-datepicker-popper {
  z-index: 9 !important;
}

/* 28-10-21 for Disable buttons blurr */
td.Mui-disabled {
  filter: grayscale(10) opacity(0.5);
}

td div .Mui-disabled {
  filter: grayscale(10) opacity(0.5);
}

.pt-15 {
  padding-top: 15px;
}

.DayPicker-Day--today {
  color: #111111 !important;
  font-weight: 700;
}

.mw-213 {
  min-width: 213px;
  max-width: 213px;
  width: 213px;
}

.allocate-ticket {
  display: contents;
}

select:disabled {
  cursor: not-allowed;
}

.group_loader {
  border: 3px solid #528483;
  border-radius: 50%;
  border-top: 3px solid #f6f9f9;
  width: 26px;
  height: 26px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin: 6px 5px;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.destination-name-td td {
  white-space: nowrap;
  vertical-align: middle;
}

.destination-name-td td,
.manage-breckdown-tbl-td {
  height: 64px;
  vertical-align: middle !important;
}

.destination-holder {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 38px;
}

.destination-holder .action-btn {
  margin: 0 5px !important;
}

.avail-date-range {
  margin-top: 9px;
  padding-left: 20px;
}

.MTableToolbar-highlight-6 {
  display: none !important;
}

/*
 Toaster CSS
*/

.Toastify__toast-container {
  color: #528483 !important;
}

.Toastify__toast--success,
.Toastify__toast--error {
  background: #fff !important;
  box-shadow: 0 0 5px #999 !important;
}

.Toastify__close-button {
  color: #528483 !important;
  margin-top: 12px !important;
  margin-right: 6px !important;
}

.Toastify__close-button--error {
  color: #e74c3c !important;
}

.Toastify__progress-bar {
  background-color: #dce6e6 !important;
}

.Toastify__toast--error .Toastify__toast-body {
  color: #e74c3c !important;
}

.disabled-link {
  pointer-events: none;
}

.custom-close-outer {
  position: relative;
  width: 100%;
}

.custom-close {
  position: absolute;
  top: -23px;
  left: -24px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}

.custom-close2 {
  position: absolute;
  top: -23px;
  left: -15px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}

.custom-close svg,
.custom-close2 svg {
  color: #e8542c !important;
  width: 16px;
  height: 16px;
  fill: #e8542c;
}

.d-flex .custom-close-outer {
  position: static;
  margin-top: 2px;
  line-height: 0;
  margin-right: 3px;
}

.d-flex .custom-close-outer .custom-close,
.d-flex .custom-close-outer .custom-close2 {
  position: static;
}

.sale-row td {
  background: #d7d7d7;
  /* padding-left: 30px; */
}

.sale-row-inner-for-total td {
  background: #d7d7d7;
}

.break-point td {
  border-top: solid 2px #b2c8c8 !important;
}

.sale-row-deleted td {
  padding-left: 30px;
}

.bold_number {
  font-family: "Montserrat-SemiBold" !important;
  text-align: center;
}

.breakdowntable table tr td {
  /* height: 65px !important; */
  vertical-align: middle;
}

.breakdowntable .sale-row-inner td {
  border-bottom: 1px solid transparent;
}

.breakdowntable .sale-row td {
  /* height: 65px !important; */
  vertical-align: middle;
}

.breakdowntable .total-col {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
}

.breakdowntable .sold-col {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
}

.breakdowntable .comps-col {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
}

.breakdowntable .unsold-col {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
}

.no-border thead tr th:first-child {
  border-left: none !important;
}

.no-border thead tr th:last-child {
  border-right: none !important;
}

/* Kendo React CSS - 13-12-21 */
.k-grid td.k-state-selected,
.k-grid tr.k-state-selected>td {
  background-color: unset !important;
}

.k-checkbox:checked,
.k-checkbox.k-checked {
  border-color: #528483 !important;
  color: white;
  background-color: #528483 !important;
}

.k-checkbox:checked:focus,
.k-checkbox.k-checked.k-state-focus {
  box-shadow: 0 0 0 2px #528483 !important;
}

.k-pager-numbers .k-link.k-state-selected {
  color: white !important;
  background-color: #528483 !important;
}

.k-grid-header .k-i-sort-asc-sm,
.k-grid-header .k-i-sort-desc-sm,
.k-grid-header .k-sort-order {
  color: #528483 !important;
}

.k-pager-numbers .k-link {
  color: #528483 !important;
}

.convert-to-tour {
  flex-wrap: unset !important;
}

.convert-to-tour a {
  font-size: 13px !important;
}

/* Progress Sheet CSS -15-12-21 */
.repeat-box-static {
  margin: 15px 0 0;
}

.repeat-box-static .form-group.static-label {
  margin-bottom: 5px;
}

.static-label span {
  font-family: "Montserrat-Light";
}

.static-label label {
  margin-bottom: 0 !important;
  font-weight: bold !important;
}

.repeat-box-static .form-group {
  background: #fff;
  padding: 10px;
  border-bottom: solid 1px #e7eaef;
}

.static-table tr th:first-child {
  width: 120px !important;
  min-width: 100px;
}

.static-table tr th:nth-child(2) {
  width: 300px !important;
  min-width: 300px;
}

.text-danger-static p {
  margin-bottom: 5px;
}

.static-text p {
  font-family: "Montserrat-Light";
}

.static-text ul {
  margin: 0;
  padding: 0;
}

.static-text ul li {
  font-family: "Montserrat-Light";
  position: relative;
  list-style-type: none;
  padding: 5px 5px 5px 25px;
}

.static-text ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  color: #618180;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 5px;
}

.w-100-span span {
  display: block;
  padding: 3px 0;
}

.progress-sheet-table {
  margin-top: -15px !important;
}

.ml-20 {
  margin-left: 12px !important;
}

.show-listing-action-buttons:hover {
  cursor: pointer;
}

/* TEMP INCLUDED FOR EDIT SALES UPLOAD SECTION */
.form-group.files {
  border: dashed 2px #528483;
  height: 200px;
  margin-bottom: 0;
  background: #f8f8f8;
  max-width: 100%;
  margin-bottom: 30px;
}

.custom-file-label.mb-0.pl-2 {
  max-width: 300px;
  margin: 30px auto;
  margin-bottom: 30px;
}

/* 22-12-21 */
.tableFixHead {
  overflow: auto !important;
  /*sticky header fixes 11/2/22*/
  overflow-y: auto !important;
  height: 106px !important;
}

.tableFixHead thead th {
  position: sticky !important;
  position: -webkit-sticky !important;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky;
  top: -1px;
  z-index: 99;
}

table.tableFixHead {
  border-collapse: collapse;
  width: 100%;
  border: none !important;
}

table.tableFixHead th,
table.tableFixHead td {
  padding: 8px 16px;
  border: 1px solid #ccc;
  min-width: 100px;
}

table.tableFixHead th {
  background: #eee;
  padding: 18px 16px !important;
}

/* table.emailTbl p {
  display: inline-block;
} */

.progress_sheet .modal-header .close {
  margin: 0 !important;
  padding: 9px 16px;
}

.red-link {
  color: #dc3545;
  font-family: "Montserrat-SemiBold";
  font-size: 18px;
  margin-bottom: 25px;
  padding: 10px 0 0 10px;
  text-align: center;
}

.red-link i {
  color: #dc3545;
  margin-right: 0;
  -webkit-animation: bounceRight 2s infinite;
  animation: bounceRight 2s infinite;
}

/* / right bounce / */
@-webkit-keyframes bounceRight {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  60% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}

@-moz-keyframes bounceRight {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(20px);
  }

  60% {
    transform: translateY(15px);
  }
}

@keyframes bounceRight {

  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  60% {
    -ms-transform: translateY(15px);
    transform: translateY(15px);
  }
}

/* hovering on the users account, automatically panel should get opened with Profile, Login as and Logout */
.sidebar {
  min-height: calc(100vh - 63px);
}

tr.sales.negative,
tr.unsold.negative {
  color: red;
  font-weight: bold;
}

.status-span.completed {
  background: #419140 !important;
}

.status-span.errors {
  background: #f46565 !important;
}

.mr-new-3 {
  margin-right: 3rem !important;
}

/* 21-1-22 */
.action-column-padding .MuiTableCell-paddingCheckbox:last-child {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.mapping-rules-table th:nth-child(4) {
  min-width: 150px !important;
}

.process-mapping-error th:nth-child(3) {
  min-width: 150px !important;
}

.calendar-tbl table th {
  min-width: 150px !important;
}

.age-restriction-select option {
  white-space: normal !important;
  max-width: 300px !important;
}

.csv-uploader-form .form-control {
  font-family: "Montserrat-SemiBold" !important;
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: 38px;
}

/* 25-1-22 */
.csv-uploader-guidlines {
  padding: 0;
  border: dashed 1px #dc3545ab;
  margin-bottom: 0;
  background: #f8f8f8;
  max-width: 100%;
  margin-bottom: 30px;
}

.guidlines {
  margin: 6px;
}

.pencil-table .MuiIconButton-root {
  flex: 0 0 auto;
  color: rgba(0, 0, 0, 0.54);
  padding: 0px;
  overflow: visible;
  font-size: 1.5rem;
  text-align: center;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 50%;
}

.pencil-table .MuiIconButton-label {
  margin-left: 25px;
}

.avail-venues .k-header .k-checkbox {
  display: none !important;
}

/* 01-02-22 */
/*2/9/2022*/
/* manage breakdowns error message */
.mb-error {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 75%;
  color: #dc3545;
  font-family: "Montserrat-Regular";
  position: absolute;
  width: 94%;
  background: #0404040a;
  padding: 5px;
  border-radius: 5px;
  z-index: 10;
}

.avail-pencil-action {
  color: #e8542c;
  display: flex;
  justify-content: center;
}

/* 03-02-22 admin sidebar nav */
.sidebar .mCSB_inside>.mCSB_container {
  margin-right: 0px;
}

.sidebar .mCSB_scrollTools {
  right: -5px;
  z-index: 10;
}

.sidebar .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgb(156 158 161);
}

.sidebar .mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgb(158 158 159);
}

.no-record-to-display {
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: center;
}

/* 8-2-2022 Guest List CSS */

.common-guestlist-button {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}

.fs {
  font-size: 12px;
}

.k-timepicker .k-picker-wrap {
  border-color: rgb(0 0 0 / 0%) !important;
  color: #424242;
  background-color: #ffffff0d !important;
}

.time-outer .k-datepicker,
.k-timepicker {
  width: 10.4em !important;
  border-width: 0;
  box-sizing: border-box;
  outline: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4285714286;
  white-space: nowrap;
  background: none;
  display: inline-flex;
  vertical-align: middle;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*timer 21/feb*/
.time-outer .k-input .k-icon {
  margin: 0;
  padding: 4px 8px;
  width: 100%;
  margin-right: 54px;
  min-width: 0;
  height: calc(1.4285714286em + 8px);
  border: 0;
  outline: 0;
  box-sizing: border-box;
  box-shadow: none;
  color: inherit;
  background: #f6f7f9 !important;
  font: inherit;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-appearance: none;
  font-size: 11px;
}

.k-input .k-icon {
  width: 1em;
  height: 1em;
  margin-right: 40px;
  outline: 0;
  font-size: 12px;
  font-family: "WebComponentsIcons";
  font-style: normal;
  font-feature-settings: normal;
  background: #f6f7f9 !important;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  position: relative;
  -moz-osx-font-smoothing: grayscale;
}

.time-outer .k-state-focused {
  box-shadow: none !important;
}

.start-date-time {
  width: 20.4em !important;
  border-width: 0;
  box-sizing: border-box;
  outline: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4285714286;
  text-align: left;
  white-space: nowrap;
  background: none;
  display: inline-flex;
  vertical-align: middle;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.start-date-time .k-input {
  margin: 0;
  padding: 4px 8px;
  width: 100%;
  min-width: 0;
  height: calc(1.4285714286em + 8px);
  border: 0;
  outline: 0;
  box-sizing: border-box;
  box-shadow: none;
  color: inherit;
  background: #f6f7f9 !important;
  font: inherit;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-appearance: none;
}

.start-date-time .k-state-focused {
  box-shadow: none !important;
}

.start-date-time .k-picker-wrap {
  border-color: rgb(0 0 0 / 0%) !important;
  color: #424242;
  background-color: #ffffff0d !important;
}

/* 11-02-2022 */
.no-padding {
  padding: 0;
}

.guest-list-form .input-group {
  max-width: 190px;
  margin-bottom: 15px !important;
}

@media (max-width: 1439px) {
  .guest-list-form .input-group {
    max-width: 190px;
  }
}

@media (max-width: 1280px) {
  .guest-list-form .filter-reset-btn-group {
    padding: 0 8px;
  }
}

.tour-popup .start-date-time {
  width: 26.4em !important;
  border-width: 0;
  box-sizing: border-box;
  outline: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4285714286;
  text-align: left;
  white-space: nowrap;
  background: none;
  display: inline-flex;
  vertical-align: middle;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.time-outer-show .k-datepicker,
.k-timepicker {
  width: 134px !important;
  border-width: 0;
  box-sizing: border-box;
  outline: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4285714286;
  white-space: nowrap;
  background: none;
  display: inline-flex;
  vertical-align: middle;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.time-outer-show .k-input {
  margin: 0;
  padding: 4px 8px;
  width: 100%;
  min-width: 0;
  height: calc(1.4285714286em + 8px);
  border: 0;
  outline: 0;
  box-sizing: border-box;
  box-shadow: none;
  color: inherit;
  background: #f6f7f9 !important;
  font: inherit;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-appearance: none;
}

.time-outer-show .k-state-focused {
  box-shadow: none !important;
}

.main-form .forms-control {
  font-family: "Montserrat-Light";
  font-size: 14px;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: 38px;
  width: 100%;
  background: #f6f7f9 !important;
}

.k-animation-container {
  z-index: 1050 !important;
}

.add-guest-list .previous-next-button {
  margin-left: 16px;
  margin-top: -25px;
}

.add-guest-list .border-form {
  padding: 5px 10px;
  border: solid 1px #ccc;
  display: inline-block;
  line-height: normal;
  border-radius: 5px;
}

.add-guest-list .border-form span span {
  color: red;
}

.add-guest-list .border-form span {
  color: #528483;
}

.guest-rt-info .form-control.w-auto.limits.mr-2 {
  height: 30px;
}

.limits {
  display: inline !important;
  max-width: 65px;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.guest-rt-info .btn.btn-primary {
  height: 30px;
  line-height: normal;
  font-size: 12px;
}

.printed-guest-list-button {
  display: flex;
  justify-content: end;
  -webkit-justify-content: flex-end;
}

.k-dropdown .k-dropdown-wrap,
.k-dropdowntree .k-dropdown-wrap {
  border-color: rgba(0, 0, 0, 0.08);
  color: #424242;
  font-size: 13px;
  background-color: #f5f5f5;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

/*datepicker*/
.react-datepicker__navigation .react-datepicker__navigation-icon {
  position: absolute;
}

.react-datepicker__navigation .react-datepicker__navigation-icon::before {
  height: 15px !important;
  width: 15px !important;
}

.react-datepicker__navigation-icon--previous::before {
  top: 10px !important;
  right: 2px !important;
}

.react-datepicker__navigation-icon--next::before {
  top: 10px !important;
  left: 2px !important;
}

/*datepicker*/
.extra-msg {
  font-size: 11px;
  font-weight: normal;
}

/* sjm-concerts-closed */
.select-show-dropdown {
  width: auto !important;
  max-width: unset !important;
  margin-bottom: 3px !important;
}

.sjm-concerts-closed .top-section th {
  background: transparent !important;
  border-bottom: solid 1px #b2c8c8 !important;
}

.csvtable .Component-horizontalScrollContainer-5 div:first-of-type {
  border-radius: 8px;
  -webkit-border-top-left-radius: 11px;
  -webkit-border-top-right-radius: 11px;
  -moz-border-radius-topleft: 11px;
  -moz-border-radius-topright: 11px;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
}

/* CSS for view audit log 22 Feb 2022 */

#faq .card {
  margin-bottom: 20px;
  border: 0;
}

#faq .card .card-header {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 5px;
  padding: 0;
  margin: 0;
}

#faq .card .card-header .btn-header-link {
  color: #fff;
  display: block;
  text-align: left;
  color: #222;
  padding: 15px;
}

#faq .card .card-header .btn-header-link:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
}

#faq .card .card-header .btn-header-link:not(.collapsed) {
  color: #000;
  background: #dce6e6;
}

#faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f106";
}

#faq .card .collapsing {
  line-height: 30px;
}

#faq .card .collapse {
  border: 0;
}

#faq .card .collapse.show {
  background: #fff;
  line-height: 30px;
  color: #222;
}

#faq .card .card-body {
  border: 1px solid #c0d2d2;
  border-top: none;
  border-radius: 0 0 5px 5px;
  margin-top: -2px;
}

.table-listing-outer .production-table2 a {
  color: #212529;
  display: contents !important;
  margin: 0 auto;
  max-width: 150px;
}

/* Production Module Calendar */
.rep-names p {
  display: inline-block !important;
  vertical-align: top;
  padding: 3px 10px;
  margin-right: 3px;
}

.rep-names p a {
  color: #fff;
  text-decoration: none;
}

/* 18-3-22 */

.react-autosuggest__container {
  position: relative;
}

.react-autosuggest__input {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: 38px !important;
  width: 225px !important;
}

.search-result .react-autosuggest__input {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: 40px !important;
  width: 285px !important;
}

.react-autosuggest__input:focus {
  outline: none;
}

.react-autosuggest__container--open .react-autosuggest__input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.react-autosuggest__suggestions-container {
  display: none;
}

.react-autosuggest__container--open .react-autosuggest__suggestions-container {
  display: block;
  position: absolute;
  top: 51px;
  width: 280px;
  border: 1px solid #aaa;
  background-color: #fff;
  font-family: Helvetica, sans-serif;
  font-weight: 300;
  font-size: 16px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: 2;
}

.react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.react-autosuggest__suggestion {
  cursor: pointer;
  padding: 10px 20px;
}

.react-autosuggest__suggestion:not(:first-child) {
  border-top: 1px solid #ddd;
}

.react-autosuggest__suggestion--focused {
  background-color: #0c7eaf;
  color: #fff;
}

.suggestion-content {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
}

.name {
  margin-left: 18px;
  line-height: 45px;
  color: #528483 !important;
}

.dashboard-upcoming-events .box.event-section {
  display: flex;
  flex-wrap: wrap;
  height: 255px;
  overflow: auto;
}

.dashboard-upcoming-events .container {
  max-width: 100%;
}

.dashboard-upcoming-events .column {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 10px;
}

.dashboard-upcoming-events .event-card {
  border-bottom: 1px solid #ccc;
  padding: 10px 10px 25px 10px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}

.dashboard-upcoming-events .event-card .event {
  position: inherit;
  padding: 0;
}

.dashboard-upcoming-events .event-card .buttons {
  display: inherit;
  justify-content: inherit;
  margin: 0;
}

.dashboard-upcoming-events .event-card .buttons .btn {
  margin: 30px -15px 0 0;
  padding: 0 0 0 40px;
}

.dashboard-upcoming-events .event-card .buttons img {
  max-width: 26px;
}

.dashboard-upcoming-events .event-card .event .profile-name {
  position: inherit;
  display: flex;
  align-items: center;
}

.dashboard-upcoming-events .event-card .event .profile-name .event-info p.name {
  margin: 10px 0;
  line-height: normal;
  font-size: 18px;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-upcoming-events .event-card .event .profile-name .event-info p.venue {
  margin: 10px 0;
  line-height: normal;
  color: #969b32;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-upcoming-events .profile-name img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 10px;
}

.dashboard-upcoming-events .profile-name {
  flex-wrap: nowrap;
}

.dashboard-upcoming-events .event-info {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 15px;
}

.dashboard-upcoming-events .name {
  font-weight: bold;
}

.dashboard-upcoming-events .venue {
  margin-top: 5px;
}

.dashboard-upcoming-events .time {
  position: absolute;
  top: 10px;
  right: 10px;
}

.dashboard-upcoming-events .buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.dashboard-upcoming-events .btn {
  margin-left: 10px;
}

.dashboard-grid {
  height: '400px' !important;
  overflow-y: 'auto'
}

.highlight {
  color: #ee0000;
  font-weight: bold;
}

.react-autosuggest__suggestion--focused .highlight {
  color: #120000;
}

/* CSS for display Search result  21-3-22*/

.table-listing-outer .notifications-view-table {
  overflow: hidden;
  margin-bottom: 15px !important;
}

.table-listing-outer .notifications-view-table thead tr th {
  background: #dce6e6;
  color: #000;
  font-size: 15px;
  border-bottom: solid 5px #b2c8c8;
  white-space: nowrap;
  font-family: "Montserrat-Light";
  padding: 10px;
}

.notification-list .notifications-view-table tbody td:first-child {
  text-align: left;
}

.table-listing-outer .notifications-view-table tbody tr td {
  font-family: "Montserrat-Light";
  font-size: 14px;
  border-bottom: 1px solid #c0d2d2;
  padding: 10px;
}

.react-autosuggest__suggestion-match {
  color: #325c5b;
  font-weight: bold;
}

.tour-details-section .custom-checkbox .custom-control-label {
  padding: 0;
}

.tour-details-section .uploadOuter {
  text-align: center;
  padding: 20px;
}

.tour-details-section .uploadOuter strong {
  padding: 0 10px;
}

.tour-details-section .dragBox {
  width: 250px;
  height: 100px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  font-weight: bold;
  line-height: 95px;
  color: #999;
  border: 2px dashed #ccc;
  display: inline-block;
  transition: transform 0.3s;
}

.tour-details-section .dragBox input[type="file"] {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  top: 0;
  left: 0;
}

.tour-details-section .draging {
  transform: scale(1.1);
}

.tour-details-section #preview {
  text-align: center;
}

.tour-details-section #preview img {
  max-width: 100%;
}

.tour-details-section .search-results-box {
  border: solid 1px #dee2e6;
  border-radius: 10px;
  padding: 15px 10px;
  margin: 6px 0 0;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.tour-details-section .search-results-box label {
  padding: 0;
}

/* production table mobile bugs*/
.assign-tour-tbl .MuiTable-root .MuiIconButton-root {
  padding: 3px;
}

/* navbar cut mobile bug */
@media (min-width: 768px) and (max-width: 1024px) {
  .topbar .navbar-search {
    width: 290px;
  }

  .react-autosuggest__input {
    width: 115px !important;
  }
}

/*Document page mobile view bugs*/
@media (min-width: 368px) {
  .col-md-6d {
    flex: 0 0 50%;
    max-width: 100%;
  }
}

/*Ticketing details page mobile view bugs*/
@media (min-width: 368px) {
  .col-md-6t {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 100%;
  }
}

.fc .fc-button:disabled {
  opacity: 2.65;
  margin-left: 11px;
}

/* Permission Matrix CSS-5-4-22 */
.permission-matrix-table .permisssion-control select {
  width: 173px !important;
  min-width: 173px !important;
}

/*guest list table bug*/
.last-action table {
  table-layout: unset;
  width: 100%;
}

.last-action table thead th,
.last-action table tbody td {
  width: 130px;
}

.last-action table thead th:last-of-type,
.last-action table tbody td:last-of-type {
  width: 115px;
}

/*artist profile responsive bug*/
.artist-banner-section .title.mt-3 {
  padding: 0 15px 0 80px;
}

.artist-banner-section .title.mt-3 span {
  position: absolute;
  left: 0;
  top: -15px;
}

@media (max-width: 991px) {
  .artist-banner-section .title.mt-3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .artist-banner-section .title.mt-3 {
    padding-left: 50px;
  }
}

.custom-w .form-control {
  width: 100% !important;
}

/* 14-4-22 {for Add show Tab } */

.DayPicker-Caption select {
  border: none !important;
}

@media (min-width: 768px) {
  .guest-rt-info {
    text-align: right;
  }
}

.venues-custom-table table {
  table-layout: unset;
  width: 100%;
}

.venues-custom-table table thead th,
.venues-custom-table table tbody td {
  width: 140px;
}

.venues-custom-table table thead th:last-of-type,
.venues-custom-table table tbody td:last-of-type {
  width: 160px;
}

.venues-custom-table table thead th:last-of-type .k-cell-inner>.k-link {
  overflow: initial;
}

.production-custom-table table {
  table-layout: unset;
  width: 100%;
}

.production-custom-table table thead th,
.production-custom-table table tbody td {
  width: 130px;
}

.main-report table {
  table-layout: unset;
  width: 100%;
}

.main-report table thead th,
.main-report tbody td {
  width: 130px;
}


.main-report.showTimesTable table thead th,
.main-report.showTimesTable tbody td {
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  white-space: normal !important;
  word-break: break-word;
}

/* CSS for global search 20-4-22 */
@media (min-width: 576px) {
  .topbar .dropdown {
    position: relative;
    /* margin-right: 1.5px; */
    margin: 2px 1.5px 0 0;
  }
}

/* hight 38 */
.h-38 {
  height: 38px !important;
  border-radius: 5px;
}

.guest-custom-table table {
  table-layout: unset;
  width: 100%;
}

.guest-custom-table table thead th,
.guest-custom-table table tbody td,
.guest-custom-table table tfoot td {
  width: 110px;
}

.colorstrip {
  height: 10px;
}

.w-210 {
  width: 210px !important;
}

.tour-info label span {
  color: red;
}

.k-datepicker .k-picker-wrap,
.k-timepicker .k-picker-wrap,
.k-datetimepicker .k-picker-wrap,
.k-dateinput .k-dateinput-wrap {
  border-color: rgba(0, 0, 0, 0.08);
  color: #424242;
  background-color: #f6f7f9 !important;
}

/*vip menu css*/
.vip-preview-list ul {
  padding: 0;
  margin: 0 0 15px 15px;
}

/* audit page 06/05/2022 */
.audit-fields-section .input-group .form-control {
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  font-family: "Montserrat-Light", sans-serif;
}

.audit-fields-section .select-show-dropdown {
  width: 100% !important;
  max-width: 120px !important;
  margin-bottom: 10px !important;
}

.audit-fields-section label {
  /* width: 125px; */
  text-align: right;
  padding: 7px;
}

.audit-fields-section .input-group {
  max-width: 320px;
  margin-bottom: 5px;
}

.audit-fields-section table thead th:last-child {
  width: 150px !important;
}

.audit-fields-section .search-fields {
  width: 100%;
  max-width: 210px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .audit-fields-section .select-show-dropdown {
    margin-bottom: 10px !important;
  }

  .audit-fields-section label {
    width: 125px;
    text-align: right;
    font-size: 14px;
    padding: 7px 5px;
  }

  .audit-fields-section .input-group .form-control {
    font-size: 14px;
  }

  .audit-fields-section .input-group {
    max-width: 100%;
  }
}

.add-existing-contact-roles {
  width: 210px;
  background: #f6f7f9 !important;
}

.add-existing-contact-roles .Select-control {
  background: #f6f7f9 !important;
}

/* Document Module 9-5-22 */
.document-dashboard .table-responsive {
  overflow: auto;
  height: auto;
  min-height: auto !important;
}

.mt-31 {
  margin-top: 31px !important;
}

.mw-180 {
  min-width: 180px !important;
}

.w-130 {
  width: 130px !important;
}

.static-report-setect label {
  min-width: fit-content !important;
}

.static-report-setect select {
  max-width: 195px !important;
}

.static-report-setect-in-cs #selectedShowId {
  max-width: 305px !important;
}

.add-existing-contact-roles .Select-control .Select-clear-zone {
  display: none !important;
}

.document-common-data {
  width: 100% !important;
}

.display-inline-block {
  display: inline-block !important;
}

.doc-tour-max-width {
  min-width: 200px !important;
}

.table-listing-outer .documents-table a {
  max-width: 200px !important;
}

.mt-38 {
  margin-top: 38px !important;
}

.mt-7 {
  margin-top: -7px !important;
}

.vip-image-resize {
  height: 180px !important;
  width: 195px !important;
}

.vip-upload:hover .delete {
  display: block;
}

.vip-upload .delete {
  background-color: red;
  width: 20px;
  padding: 2px 5px;
  color: white;
  display: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: -8px;
}

.main-form .password {
  font-family: none !important;
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: 38px;
}

.production-assign-tour {
  overflow: auto;
  height: auto;
  min-height: auto !important;
  margin-bottom: 35px !important;
}

.Select-menu-outer {
  z-index: 999999 !important;
}

.custom-control-input {
  position: initial !important;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.confirmation-report .table td a {
  color: #212529;
  display: block;
  margin: 0 auto;
  max-width: initial !important;
}

.text-color {
  color: #528483;
}

.confirmation-report .k-grid-footer td,
.k-group-footer td,
.k-grouping-row td {
  font-weight: inherit !important;
}

/* Start CSS for fixed header 27-6-22  */

#div1 table,
#div2 table {
  table-layout: auto;
}

#div1 table th,
#div2 table th {
  white-space: normal;
}

.scrollbarhide {
  position: fixed;
  width: auto;
  right: 24px;
  top: 62px;
  z-index: 99999;
  background: #fff;
  background-color: rgb(255, 255, 255);
  overflow-y: hidden;
  overflow-x: scroll;
  padding-left: 20px;
  padding-right: 24px;
  overflow: hidden;
  left: 163px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 54px;
}

#div1 {
  overflow: auto;
}

#div1 {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  max-height: 54px;
  overflow: hidden;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: none !important;
  background-color: transparent;
}

#div1::-webkit-scrollbar {
  width: 3px !important;
  background-color: transparent;
}

#div1::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.scrollMore {
  margin-top: 600px;
}

.up {
  cursor: pointer;
}

.scrollbarhide {
  height: 0;
  opacity: 0;
}

.scrollbarhide .fixedxx {
  border-left: solid 1px #dee2e6;
}

.availsCalendar {
  display: none;

}

.tableFixHead1 .scrollbarhide {
  height: auto;
  opacity: 1;
}

.tableFixHead1 .availsCalendar {
  display: block;

}

.tableFixHead1 #div2x table thead {
  display: none;
  visibility: hidden;
}

#div1 table {
  margin-bottom: 0 !important;
}

.action.th10 {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .scrollbarhide {
    left: 28px;
  }
}

/* End CSS for fixed header 27-6-22  */
.closing-advance-report {
  overflow: auto;
  height: auto;
  min-height: auto !important;
}

.filter-button {
  position: relative;
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  -ms-flex-align: stretch;
  width: 100%;
}

.display-block {
  display: block !important;
}

.mb-30 {
  margin-bottom: -30px !important;
}

.modal {
  position: fixed;
  top: 60px !important;
  left: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-backdrop {
  z-index: 9999;
}

.contacts-tab-class .MuiTable-root {
  width: 100% !important;
}

.movement-report {
  white-space: nowrap !important;
  overflow: auto;
  height: auto;
  min-height: auto !important;
}

.global-search {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: inherit !important;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

/* 14-7-22 wrap-table-header CSS */
.wrap-table-header {
  white-space: normal !important;
  word-wrap: break-word !important;
  max-width: 100px !important;
}

.display {
  display: none;
}

.Model-popup-csv .modal-body {
  max-height: 600px;
  overflow-y: auto;
}

.position-relative {
  position: relative !important;
}

.tbl-border {
  border: 1px solid #dee2e6;
}

.fixed-column-td,
th.fixed-column-td {
  position: absolute !important;
  z-index: 9;
  width: 190px !important;
  min-width: 190px !important;
  max-width: 190px !important;
  border: 1px solid #dee2e6;
  left: 27px;
  height: 60px;
  margin-top: -1px;
  border-left: none !important;
}

.fixed-column {
  padding: .75rem;
  position: absolute;
  width: auto;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  right: -3px;
}

.tableFixHead th.fixed-column-td .fixed-column,
.tableFixHead2 th.fixed-column-td .fixed-column {
  width: 241px;
  flex: 0 0 241px;
  border-right: 2px solid #c0d2d2;
  background: #dce6e6;
  border-bottom: 2px solid #c0d2d2;
  left: -1px;
  border-left: 2px solid #c0d2d2;
  height: calc(100% + 2px);
}

.table-listing-outer .position-relative .table tbody tr:nth-child(2n) td:first-child {
  background: #f6f9f9;
}

.table-listing-outer .position-relative .table tbody tr:nth-child(2n - 1) td:first-child {
  background: #fff;
}

.table-listing-outer .position-relative .table thead tr th:first-child {
  width: 191px !important;
  min-width: 191px !important;
  max-width: 191px !important;
}

.h-45 {
  height: 45px !important;
}

.border-right {
  border-right: none !important;
}

.calendar-multiselect .form-control {
  padding: inherit !important;
  width: 280px !important;
  border: none !important;
}

.calendar-multiselect .form-control .Select-control {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: 40px !important;
}

.calendar-filter-button {
  height: 0px !important;
}

.csv-delete {
  color: rgb(232, 84, 44) !important;
}

.doors-curfew-padlock {
  height: 15px;
  width: 15px;
  margin-top: 13px;
}

.w-105 {
  width: 105px !important;
}

.breakdowntable table table .form-control {
  max-width: 75px;
}

.mw-100 {
  min-width: 100px;
  width: 100px;
}

.auto-width {
  width: 100%;
  max-width: 100%;
}

.sr-mw-100 {
  min-width: 100px;
}

.sr-input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.doors-n-curfew-bg-box {
  background: #fff;
  padding: 1.5rem;
  margin: 15px 0 6px;
  box-shadow: 0px 0px 0px 0px;
  border-radius: inherit;
  width: auto;
  max-width: 976px;
}

.audit-log {
  overflow: auto;
  height: auto;
  min-height: auto;
}

.dropdown-toggle-action {
  font-size: 18px;
  border: solid 1px #dce6e6;
  border-radius: 5px;
  background: #dce6e6;
  color: #528483 !important;
  padding: 5px 0;
}

.mapping-rules-table .MuiTableRow-head th span {
  white-space: pre-wrap !important;
}

.manage-width-avail table tr th:first-of-type,
.manage-width-avail table tr td:first-of-type {
  width: 20% !important;
  min-width: 80px !important;
  max-width: 80px !important;
}

.manage-width table tr th:last-of-type,
.manage-width table tr td:last-of-type {
  width: 20% !important;
  min-width: 80px !important;
  max-width: 80px !important;
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e7eaef;
  border-radius: 0.25rem;
}

.new-flex-wrap {
  flex-wrap: nowrap !important
}

.min-768 {
  min-width: 768px;
}

.mr-35 {
  margin-right: 35px;
}

.ml-150 {
  margin-left: 83px;
}

.ml-13 {
  margin-left: 13px;
}

.mt-10 {
  margin-top: 10px !important;
}

.ml-100 {
  margin-left: 130px !important;
}

.ml-17 {
  margin-bottom: 11px;
  margin-right: -17px;
}

.archive-field {
  font-size: 12px !important;
  margin-left: 5px;
}

.ml-27 {
  margin-left: 27px;
}

.filter-reset-btn-group.w-auto,
.input-group.w-auto {
  width: auto !important;
}

.provisional-searchbar .input-group.mr-auto {
  margin-right: auto !important;

}

@media (max-width:360px) {
  .provisional-searchbar .input-group {
    width: 100% !important;
  }
}

.vip-checkbox {
  margin-right: 11px !important;
}

.availsCalendar {

  position: fixed;
  width: auto;
  right: 24px;
  top: 62px;
  z-index: 1022;
  background: #fff;
  background-color: rgb(255, 255, 255);
  overflow-y: hidden;
  overflow-x: scroll;
  padding-left: 20px;
  padding-right: 24px;
  overflow: hidden;
  left: 163px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  max-height: 263px;
}


.availsCalendar #div1 {

  scrollbar-width: none;
  -ms-overflow-style: none;
  max-height: 263px;
  overflow: hidden;

}

.note-content {
  width: 100%;
  display: block;
  word-break: inherit;
  min-width: 450px;
}

.noteContentRouting table tr th:last-child {
  width: 500px !important;
}

/* 17march2023 bug fixex */
.form-group-zindex {
  position: relative;
  z-index: 9999;
}

.normalwrap .k-column-title {
  white-space: normal;
  text-overflow: inherit;
  overflow: visible;
}

.table-listing-outer .position-relative .tableFixHead2 thead tr th:first-child {
  width: 240px !important;
  min-width: 240px !important;
  max-width: 240px !important;
}

.table-listing-outer .tableFixHead2 thead tr th {
  border: 2px solid #c0d2d2;
}

.tableFixHead2 .fixed-column-td,
.tableFixHead th.fixed-column-td,
.tableFixHead2 th.fixed-column-td {
  width: 241px !important;
  min-width: 241px !important;
  max-width: 241px !important;
  height: 100px;
  border-bottom: 0;
  border-left: solid 1px #ccc !important;
  left: 24px;
  margin-top: 0;
  z-index: 999;
}

.tableFixHead th.fixed-column-td,
.tableFixHead2 th.fixed-column-td {
  left: 24px;
}

.tableFixHead2 tr td {
  padding: 16px;
}

.availvenues table td {
  word-break: break-all;
}

.holiday-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 110px;
  padding: 0 3px;
}

.table-listing-outer .tableFixHead2 tr:last-child .fixed-column-td {
  border-bottom: solid 1px #ccc !important;
}

.calendar-div .fc-h-event .fc-event-title {
  white-space: normal;
  font-size: 12px;
  line-height: normal;
  word-break: break-word;
}

.calendar-div .fc-daygrid-day-frame {
  padding: 0 15px 15px;
}

.calendar-multiselect2 .form-control .Select-control {
  height: 38px !important;
}

.repeat-static .form-group {
  margin-bottom: 5px;
}

.availsCalendarMain #div1 table th,
.availsCalendarMain #div2 table th {
  white-space: normal;
  max-width: 150px;
  min-width: 150px;
}

.availsCalendar {
  background: transparent !important;
  background-color: transparent !important;
}

.availsCalendar #div1 table tbody {
  visibility: hidden;
  opacity: 0;
  height: 1px !important;
}

.availsCalendar #div1 table tbody td {
  opacity: 0;
  visibility: hidden;
  border: none;
  background: transparent !important;
  height: 1px !important;
  overflow: hidden !important;
}

.time-outer-show .k-input {
  padding: 0;
}

.row.show-details {
  margin: 0 -7px;
}

.row.show-details .col-md-6 {
  padding: 0 7px !important;
  margin: 0 !important;
}

.k-picker-wrap {
  align-items: center;
}

.time-outer-show .k-datepicker,
.k-timepicker {
  max-width: 100%;
}

.artist-banner-section .title.mt-3 {
  word-break: break-all;
  white-space: normal;
}

.calendar-multiselect .form-control .Select-control {
  white-space: normal;
}

.topbar {
  z-index: 9999991;
}

.time-outer-show .k-datepicker,
.k-timepicker {
  width: 100% !important;
}

.doors-and-curfews .dc-outer label {
  width: 90px;
  flex: 0 0 90px;
}

input[type="file"]:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: none !important;
  box-shadow: none !important;
}

.tourDtails .custom-checkbox .custom-control-input {
  position: absolute !important;
}

.tour-info .title,
.tour-info .sub-title {
  word-break: break-word;
}

/* .k-grid-header{
   padding: 0 !important;
}

.k-grid-content{
   overflow-y: visible;
} */

button:focus,
a:focus {
  box-shadow: none !important;
  outline: none !important;
}

.dynamic-row td {
  width: 100px;
  max-width: 100px;
  min-width: 100px;
}

.gross-total-main td {
  text-align: center !important;
  vertical-align: middle !important;
}

.gross-total-main td.text-left {
  text-align: left !important;
}

.checkboxclr:checked~.custom-control-label:before {
  border-color: #528483 !important;
  background-color: #528483 !important;
}

.isVIPCheckbox {
  font-family: "Montserrat-Light";
  font-size: 14px;
}

.gross-total-ticket-allocation td {
  border-top: none !important;
}

.new-contact-popup .modal-body {
  max-height: 500px;
  overflow: auto;

}

.note p {
  margin-bottom: 0 !important;
}

/* Ticketing 280423 */
.TicketPriceGroupsTbl table.MuiTable-root .MuiTableHead-root th,
.TicketPriceGroupsTbl table.MuiTable-root .MuiTableHead-root td {
  width: calc(289.667px) !important;
}

.TicketPriceGroupsTbl table.MuiTable-root .MuiTableHead-root th:first-child,
.TicketPriceGroupsTbl table.MuiTable-root .MuiTableBody-root td:first-child {
  width: 130px !important;
  max-width: 130px !important;
  min-width: 130px !important;
}

.TicketPriceGroupsTbl table.MuiTable-root .MuiTableHead-root th:nth-child(2n),
.TicketPriceGroupsTbl table.MuiTable-root .MuiTableBody-root td:nth-child(2n) {
  width: 160px !important;
  max-width: 160px !important;
  min-width: 160px !important;
}

.TicketPriceGroupsTbl table.MuiTable-root .MuiTableHead-root th:last-child,
.TicketPriceGroupsTbl table.MuiTable-root .MuiTableBody-root td:last-child {
  width: 160px !important;
  max-width: 160px !important;
  min-width: 160px !important;
}

.TicketPriceGroupsTbl2 table.MuiTable-root .MuiTableHead-root th:first-child,
.TicketPriceGroupsTbl2 table.MuiTable-root .MuiTableBody-root td:first-child {
  width: 130px !important;
  max-width: 130px !important;
  min-width: 130px !important;
}

.TicketPriceGroupsTbl2 table.MuiTable-root .MuiTableHead-root th:nth-child(2n),
.TicketPriceGroupsTbl2 table.MuiTable-root .MuiTableBody-root td:nth-child(2n) {
  width: 160px !important;
  max-width: 160px !important;
  min-width: 160px !important;
}

.TicketPriceGroupsTbl2 table.MuiTable-root .MuiTableHead-root th:last-child,
.TicketPriceGroupsTbl2 table.MuiTable-root .MuiTableBody-root td:last-child {
  width: 160px !important;
  max-width: 160px !important;
  min-width: 160px !important;
}

/* 280423 */
/*for create tenant button */
.rgtmargin {
  margin-right: 25px !important;
}

.artist-venue-details {
  /* background: #f9f9f9; */
  padding: 15px;
  /* border: solid 1px #f1f1f1; */
  /* border-radius: 10px; */
  min-width: 40%;
}

.artist-venue-details .form-group {
  display: flex;
}

.artist-venue-details .form-group label {
  width: 110px;
  margin: 0 0 5px;
  font-family: "Montserrat-Regular";
  flex: 0 0 250px;
}

.notes-detail label {
  width: 154px;
  ;
  margin: 0 0 5px;
  font-family: "Montserrat-Regular";
}

/* checkbox alignment fixes */
.custom-checkbox .custom-control-input {
  position: absolute !important;
}

.main-form select.form-control,
select.form-control {
  margin: 0 2px;
}

/* checkbox alignment fixes /end */

.ticketUpload {
  width: 70%;
}

.ticketUploadDropDown {
  /*background: #f6f7f9 !important;
  border-radius: 5px !important;
  border: 1px solid #bacecd !important;*/
  display: initial !important
}

.ticketUploadDropDown .k-input {
  height: calc(1.428571em + 17px) !important;

}

/* newly added */
.announcemetdetails {
  padding: 15px;
  min-width: 40%;
}

.announcemetdetails .static-label label {
  margin-bottom: 0 !important;
  font-weight: normal !important;
}

.announcemetdetails .form-group {
  display: flex;
}

.announcemetdetails .form-group label {
  width: 110px;
  margin: 0 0 5px;
  font-family: "Montserrat-Regular";
  flex: 0 0 250px;
}

.excel {
  width: 25px;
  height: 25px;
}

/* checkbox alignment fixes /end */

.modal {
  top: 40px !important;
}

.modal.clubNighPopup {
  z-index: 1000;
}

.MuiPopover-root {
  z-index: 10000 !important;
}

.showlisting-tbl-main {
  position: relative;
}

.showlisting-tbl-main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 20px);
  border: solid 1px rgba(0, 0, 0, 0.08);
  top: 20px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
}

.showlisting-tbl {
  padding-top: 20px;
  z-index: 10;
  position: relative;
}

.showlisting-tbl .Select .Select-menu-outer {
  bottom: 100% !important;
  top: auto !important;
}

.showlisting-tbl .Select-menu-outer div {
  padding: 0 5px;
}

.showlisting-tbl .Select-menu-outer div {
  background: #fff;
  border-radius: 0;
}

.showlisting-tbl .table-listing-outer .MuiTable-root {
  overflow: visible;
}

.showlisting-tbl div.k-grid-header,
.showlisting-tbl div.k-grid-footer {
  overflow: visible;
}

.showlisting-tbl .k-grid table,
.showlisting-tbl .k-grid .k-grid-header-wrap {
  overflow: visible;
  /* width: 100% !important; */
}



.showlisting-tbl .k-grid .k-grid-container {
  overflow: visible;
}

.showlisting-tbl .k-grid-content {
  overflow: visible;
}

.showlisting-tbl-main .k-pager {
  border: none;
  margin-top: 10px;
}

.k-grid-header .k-header {
  font-weight: bold;
}

.showlisting-tbl-main .k-grid-header .k-header:first-child {
  border-left-width: 1px;
}

/*
.Select-menu-outer {
  top:437px !important;
left:437px !important;
position:fixed !important;
width:150px !important;
} */

.contactNote {
  height: 120px !important;
}

.MuiTable-root th .MuiTableSortLabel-root {
  font-family: 'Montserrat-Light';
  font-size: 15px;
}

.titleBold {
  font-size: 15px;
  color: black;
}

.modal {
  top: 40px !important;
}

.modal.clubNighPopup {
  z-index: 1000;
  font-weight: 700 !important;
}

.showlistingavails-tbl-main {
  position: relative;
}

.showlistingavails-tbl-main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 20px);
  border: solid 1px rgba(0, 0, 0, 0.08);
  top: 20px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.showlistingavails-tbl-main .k-pager {
  border: none;
  /* margin-top: 10px; */
}

.showlistingavails-tbl-main .k-grid-header .k-header:first-child {
  border-left-width: 1px;
}

.table-listing-outer.existing-contact-tbl .MuiTable-root th,
.table-listing-outer.existing-contact-tbl .MuiTable-root td {
  width: auto !important;
}

.table-listing-outer.existing-contact-tbl .MuiTable-root th:last-child,
.table-listing-outer.existing-contact-tbl .MuiTable-root td:last-child {
  width: calc(100px) !important;
}

.table-listing-outer.existing-contact-tbl .MuiTable-root .MuiTableFooter-root th,
.table-listing-outer.existing-contact-tbl .MuiTable-root .MuiTableFooter-root td {
  width: auto !important;
}

.table-listing-outer.existing-contact-tbl .MuiTable-root th:last-child div,
.table-listing-outer.existing-contact-tbl .MuiTable-root td:last-child div {
  display: inline-block !important;
}

.table-listing-outer.existing-contact-tbl .MuiTable-root .MuiTableFooter-root th div,
.table-listing-outer.existing-contact-tbl .MuiTable-root .MuiTableFooter-root td div {
  display: flex !important;
}

.k-grid-norecords td {
  background: #fff;
}

.destination-name-tr table td .d-flex {
  min-width: 250px;
}

.table-listing-outer .table a.align-left {
  max-width: 100%;
  text-align: left !important;
}


.table-height-same .movement-report {
  height: calc(100% - 50px);
}

.table-height-same .main-report table {
  margin: 0;
  height: 100%;
}

.progress-shits-tbl table td,
.progress-shits-tbl table th {
  word-break: normal !important;
  width: auto;
}

.progress-shits-tbl table th:nth-child(1) {
  min-width: 148px;
  max-width: 148px;
  width: 148px;
  white-space: nowrap;
}

.progress-shits-tbl table th:nth-child(2) {
  min-width: 60px;
  max-width: 60px;
  width: 60px;
}

.progress-shits-tbl table th:nth-child(3) {
  min-width: 76px;
  max-width: 76px;
  width: 76px;
}

.progress-shits-tbl table th:nth-child(4) {
  min-width: 76px;
  max-width: 76px;
  width: 76px;
}

.progress-shits-tbl table th:nth-child(5) {
  min-width: 80px;
  max-width: 80px;
  width: 80px;
}

.progress-shits-tbl table th:nth-child(6) {
  min-width: 100px;
  max-width: 100px;
  width: 100px;
}

.progress-shits-tbl table th:nth-child(7) {
  min-width: 300px;
  max-width: 300px;
  width: 300px !important;
}

.progress-shits-tbl table tr td:last-child {
  white-space: normal;
}

.main-report .summary-table table thead th,
.main-report .summary-table tbody td {
  width: auto !important;
}

.main-report .summary-table table thead th.show-date {
  min-width: 130px;
}

.main-report .summary-table table thead th.venue-name {
  min-width: 150px;
}

.selectShowForArtist .has-value .Select-control {
  max-height: 68px;
  overflow: auto;
  display: flex;
  align-items: start;
}

.singlePopup .has-value .Select-control {
  max-height: 135px;
  overflow: auto;
  display: flex;
  align-items: start;
}

.selectShowForOtherArea .has-value .Select-control {
  max-height: 135px;
  overflow: auto;
  display: flex;
  align-items: start;
}

/* .has-value .Select-control {
  max-height: 80px;
  overflow: auto;
  display: flex;
  align-items: start;
} */

.allocate-ticketes-table .static .fixed-column-td:nth-child(1) {
  height: auto;
  background: red;
}

.table-listing-outer .position-relative .allocate-ticketes-table.tableFixHead2 thead tr th:first-child {
  width: 90px !important;
  min-width: 90px !important;
  max-width: 90px !important;
}

.allocate-ticketes-table.tableFixHead th.fixed-column-td .fixed-column,
.allocate-ticketes-table.tableFixHead2 th.fixed-column-td .fixed-column {
  width: 90px;
}

.allocate-ticketes-table.tableFixHead2 .fixed-column-td,
.allocate-ticketes-table.tableFixHead th.fixed-column-td,
.allocate-ticketes-table.tableFixHead2 th.fixed-column-td {
  width: 102px !important;
  min-width: 102px !important;
  max-width: 102px !important;
}

.custom-table {
  border: solid 1px #000;
}

.custom-table thead tr th {
  border: solid 1px #000;
}

.custom-table tbody tr td {
  border: solid 1px #000;
}

.artist-genre-data .has-value .Select-control {
  max-height: 91px;
  overflow: auto;
  display: flex;
  align-items: start;
}

.support-artist-data .has-value .Select-control {
  max-height: 91px;
  overflow: auto;
  display: flex;
  align-items: start;
}

.viewInfo {
  max-width: 990px !important;
  margin-bottom: 66px !important;
}

.labelInfo {
  font-size: medium
}

.public-holidays-btn {
  margin-bottom: 15px;
  margin-right: 30px;
}

.custom-description-cell {
  width: 800px;
}

#description {
  height: 40px;
}

.holiday-page-width {
  min-width: max-content !important;
}

.table-responsive.last-action {
  overflow: hidden;
  /* Hide the vertical scrollbar */
}

.hide-popup {
  display: none !important;
}

.display-popup {
  display: block !important;
}

.set-alignment {
  padding-left: 0.6rem !important;
}

.select-show-dropdown-in-cs-sheet {
  width: 245px;
}

.select-show-dropdown-in-ps-sheet {
  margin-bottom: 0px;
}

.select-phase-button {
  width: 138px;
}

.set-price-btn {
  font-size: 14px;
  width: 60px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-weight: bolder;
  border: 1px solid rgba(0, 0, 0, 0.20);
  background: rgb(82, 132, 131);
  color: white;
}

.price-column-css {
  box-sizing: border-box;
  height: 30px;
  border-color: rgba(0, 0, 0, 0.06);
  padding: 0px 8px;
  border-radius: 3px;
  width: -webkit-fill-available;
}

.price-column-css:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.20);
}

.save-button {
  font-size: 20px;
  margin-left: 4px;
  margin-right: 8px;
  margin-top: -5px
}

.set-price-btn:hover {
  border: 2px solid rgba(0, 0, 0, 0.20);
}

.filter-reset-btn-group-cs {
  margin-right: 1rem !important;
  margin-left: none;
  width: 166px;
}


.movement-title {
  margin-left: 47%;
}

/*****/

.movement {
  margin-left: 680px !important;
}

.overflow-auto {
  overflow: auto !important;
  border-collapse: revert;
}

.white-bg {
  background: #fff !important;
}

.table-listing-outer .overflow-auto tbody tr td {
  position: sticky !important;
}

.table-listing-outer .overflow-auto thead tr th.header-report-bg {
  background: #dce6e6 !important;
}

.sticky-col {
  position: -webkit-sticky;
  position: sticky;
  background-color: white !important;
  border: 2px solid red;
}

.first-movement-col {
  width: auto;
  min-width: 80px;
  max-width: 80px;
  left: 0px;
  border: 1px solid #c0d2d2;
  z-index: 10;

}

.first-col {
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  left: 0px;
  border: 1px solid #c0d2d2;
  z-index: 10;
}

.second-col {
  width: 112px;
  min-width: 112px;
  max-width: 112px;
  left: 80px;
  border: 1px solid #c0d2d2;
  z-index: 10;
}

.third-col {
  width: 180px;
  min-width: 180px;
  max-width: 180px;
  left: 192px;
  border: 1px solid #c0d2d2;
  z-index: 10;
}

.fourth-col {
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  left: 372px;
  z-index: 10;
}

.fifth-col {
  width: 75px;
  min-width: 75px;
  max-width: 75px;
  left: 432px;
  z-index: 10;
}

.six-col {
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  left: 500px;
  z-index: 10;
}

.seven-col {
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  left: 560px;
  z-index: 10;
}

.eight-col {
  width: 70px;
  min-width: 70px;
  max-width: 70px;
  left: 620px;
  z-index: 10;
}

.nine-col {
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  left: 680px;
  border: 5px solid blue;
  z-index: 10;
}

.ten-col {
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  left: 740px;
  border-right: 1px solid #d3d3df !important;
  z-index: 10;
}

.add-all-show {
  margin-left: 21px;
}

.disabled_setprice_button {
  pointer-events: none;
  background-color: #00000042;
}

.presale-label {
  float: left;
  font-size: 114%;
  margin-top: 10px;
}

.allocation-page-all-title {
  font-size: 22px;
  font-weight: bold;
}

.width-set-on-production-contact table {
  width: 100% !important;
}

.select-width {
  width: 300px;
}

.static-report-setect-one {
  margin-top: 17px
}

.set-scroll-select-box .has-value .Select-control {
  max-height: 90px;
  overflow: auto;
  display: flex;
  height: fit-content;
  align-items: start;
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
}

.set-scroll-select-box .Select-control {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
}

.search-clear-btn {
  height: fit-content !important;
}

.set-width table {
  width: 100% !important;
}

.view-button {
  margin-left: -33px;
}

.custom-line {
  border: none;
  border-top: 1px solid #2d2d86 !important;
}

.performance-section .card-body .k-grid-header table {
  width: 100% !important;
}

.performance-section .card-body .k-grid-content table {
  width: 100% !important;
}

.performance-section .card-body .table-responsive {
  height: 100% !important;
}

.performance-section .card-body .table-responsive .k-grid {
  height: 100% !important;
}

.sale-date {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  margin-right: 14px;
  margin-bottom: 1.5rem;
  min-width: 68px;
  margin-top: 2px;
}

.sale-date-picker {
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
}


.drag-handle-cell {
  display: flex;
  justify-content: center;
}


.allocate-ticketes-col td:nth-child(3) input.form-control {
  display: inline-block;
  border-radius: 50px;
  max-width: 212px;
  width: 100%;
  margin: 0 15px 0 0;
}

.allocate-ticketes-col td:nth-child(3) .custom-checkbox {
  display: inline-block;
}

.allocate-ticketes-col .type-button {
  text-align: center;
}

.allocate-ticketes-col .type-button a {
  display: inline-block;
}

.allocate-ticketes-col td:nth-child(4) input.form-control {
  width: 85px;
}

.allocate-ticketes-col td:nth-child(4) input.form-control {
  margin: 0;
}

.allocate-ticketes-col td:nth-child(5) input.form-control {
  width: 85px;
}


.allocate-ticketes-col td:nth-child(2) {
  width: 90px !important;
  min-width: 90px !important;
  max-width: 90px !important;
}

.allocate-ticketes-col th:nth-child(3) {
  text-align: center;
  min-width: 320px !important;
}

/* .allocate-ticketes-col td:nth-child(4) {
  width: 20% !important;
  min-width: 170px !important;
  min-width: 170px !important;
  background: green;
} */


.allocate-ticketes-col th:nth-child(4) {
  text-align: center;
}

.allocate-ticketes-col th:nth-child(5) {
  text-align: center;
}

.allocate-ticketes-col th:nth-child(6) {
  text-align: center;
}

.allocate-ticketes-col th:nth-child(7) {
  text-align: center;
}

/* .allocate-ticketes-col td:nth-child(4) {
  width:10% !important;
  width: 80px !important;
  min-width: 80px !important;
  max-width: 80px !important;
  background: yellow;
} */

.allocate-ticketes-col td:nth-child(4) {
  width: 165px !important;
  min-width: 165px !important;
  max-width: 165px !important;
}

.allocate-ticketes-col td:nth-child(5) {
  width: 130px !important;
  min-width: 130px !important;
  max-width: 130px !important;
}

/* .allocate-ticketes-col td:nth-child(5) {
  width: 130px !important;
  min-width: 130px !important;
  max-width: 130px !important;
} */

.allocate-ticketes-col td:nth-child(6) {
  width: 119px !important;
  min-width: 108px !important;
  max-width: 104px !important;
}

.allocate-ticketes-col th:nth-child(6) {
  min-width: 150px !important;
  max-width: 150px !important;
  width: 150px !important;
  word-break: break-word;
  text-align: center;
  /* Optional */
}

.allocate-ticketes-col td:nth-child(7) {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
}

.allocate-ticketes-col td:nth-child(8) {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
}

.allocate-ticketes-col td:nth-child(9) {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
}

.allocate-ticketes-col td:nth-child(10) {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
}

.allocate-ticketes-col td:nth-child(11) {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
}

.allocate-ticketes-col td:nth-child(12) {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
}

.allocate-ticketes-col td:nth-child(13) {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
}

.allocate-ticketes-col td:nth-child(14) {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
}

.allocate-ticketes-col td:nth-child(15) {
  width: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
}

.allocate-ticketes-col td:nth-child(7) input.form-control {
  max-width: 320px;
  width: 100%;
}

.ticketes-allocation-hed {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.ticketes-allocation-hed .smcircle-img {
  min-width: 80px;
  height: 80px;
  border-radius: 100% !important;
  overflow: hidden;
  margin: 0 15px 0 0;
  background: #fff;
}

.green-background {
  background-color: green;
  padding-top: 2;
}

.oval-shape-container {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #fff;
  justify-content: center;
}

.oval-shape {
  display: flex;
  background-color: #71751e;
  padding: 5px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  font-weight: bolder;
}

.white-image {
  display: block;
  width: 25px;
  height: 22px;
  border-radius: 15%;
  margin-right: 10px;
}

.allocate-ticketes-col .row-header-color th {
  background-color: white !important;
}

.group_loader_allcoate_ticket {
  position: absolute;
  top: 34%;
  left: 56%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border: 3px solid #528483;
  border-radius: 50%;
  border-top: 3px solid #f6f9f9;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.add-type-btn {
  position: relative !important;
}


.sale-date-picker {
  width: 75%;
}

.date-picker {
  width: 300px;
  margin-left: 20px;
  flex-wrap: nowrap;
}

.capacity-column {
  min-width: 165px !important;
  width: 165px !important;
}

.table-head {
  left: 0 !important;
}

.movement-width {
  width: 60px;
  overflow-x: auto;
}

.linkDirection {
  text-decoration: none !important;
  color: #528483 !important;
}

.linkDirection:hover {
  text-decoration: underline !important;
  color: #528483;
}

.landing-page-ticketing table[role="presentation"] {
  width: 100% !important;
}

.artists-by-genre .artists-profile {
  position: relative;
}

.artists-by-genre .img-fluid {
  width: auto;
}

.artists-by-genre .artists-profile .artist-avatar {
  position: absolute;
  left: 15px;
  top: 15px;
}

.artists-by-genre .artists-profile .seat-icon .icon {
  width: 25px !important;
  height: auto !important;
}

.artists-by-genre .artists-profile .seat-icon {
  position: relative;
  top: -2px;
  width: 100%;
}

.artists-profile-details .venue {
  font-size: 16px;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: break-spaces;
  word-wrap: break-word;
  margin: 0 0 5px 0;
}

.artists-profile-details .venue a {
  color: #000;
}

.artists-by-genre .artists-profile .artist-avatar img {
  width: 140px !important;
  height: 140px !important;
  border-radius: 50%;
}

.artists-by-genre .artists-profile .artists-profile-details {
  padding: 10px 0 0 150px
}

.artists-by-genre .artists-profile .artists-profile-details .venue-name {
  margin-left: 0;
  line-height: normal;
  color: #528483 !important;
  font-size: 24px;
  font-family: "Montserrat-SemiBold";
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  position: relative;
  padding-right: 15px;
}

.artists-by-genre .artists-profile .artists-profile-details .venue-name-container {
  display: flex;
  align-items: center;
}

.artists-by-genre .artists-profile .artists-profile-details .venue-name img {
  position: absolute;
  left: 0;
  top: 2px;
}

.artists-profile-details .venue-name a {
  color: #000;
}

.artists-profile-details .venue-name a:hover {
  color: #000;
}

.artists-by-genre .owl-carousel .owl-item img {
  display: inline-block;
  width: 25px;
}

.artists-by-genre .program-details-row {
  margin: 0 0 15px 0;
  display: flex;
  flex-wrap: wrap;
}

.artists-by-genre .program-details-row .program-details-label {
  width: 40%;
  color: #528483;
}

.artists-by-genre .program-details-row .program-details-value {
  width: 60%;
  white-space: break-spaces;
  word-wrap: break-word;
}

.artists-by-genre .table-listing-new h2 {
  font-family: "Montserrat-SemiBold";
  font-size: 20px;
  margin: 0 0 20px 0;
}

.artists-by-genre .table-listing-new .bg-box {
  min-height: 320px;
  padding-bottom: 0 !important;
  padding: 15px;
}

.artists-by-genre .owl-nav {
  position: absolute;
  z-index: 1;
  margin: 0 auto;
  left: 0;
  margin-left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  top: 50%;
  margin-top: -20px !important;
}

.artists-by-genre .owl-carousel .owl-nav button.owl-prev,
.artists-by-genre .owl-carousel .owl-nav button.owl-next {
  /* padding: 0 5px !important; */
  margin: 0;
}

.artists-by-genre .owl-carousel .owl-nav button.owl-prev span,
.artists-by-genre .owl-carousel .owl-nav button.owl-next span {
  padding: 0 5px !important;
  font-size: 60px;
  color: #528483;
  line-height: 60px;
  position: relative;
  top: -5px;
}

.artists-by-genre .owl-carousel .owl-nav button.owl-prev {}

.artists-by-genre .owl-carousel .owl-nav button.owl-next {}

.artists-by-genre .owl-carousel .owl-dots {
  display: none;
}

.add-note-btn-box {
  height: 40px;
  margin: 3px 1px 3px 0px !important;
}

.add-button-poduction {
  right: -7px !important;
}

.production-custom-table .add-note-btn-box {
  height: 40px;
  width: 98%;
}

.add-note-btn-general-box {
  margin: 20px 0 0 0 !important;
}

.add-note-btn {
  font-size: 15px;
}

.prod-profile img {
  width: 75px;
  min-width: 75px;
  border-radius: 50%;
  height: 75px;
  max-width: 75px;
  margin: 5px;
}

.prod-profile {
  border: 1px solid gray;
  background-color: #f3efef6b;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 4px 4px 4px rgba(0.2, 0.2, 0.2, 0.2);
  margin-right: 0px;
  align-items: center;
  min-height: 110px;
  padding: 0 !important;
}

.venue-name {
  line-height: 12px;
  font-size: 12px;
  color: #528483 !important;
  margin: 8px 0;
}

.artist-heading {
  color: #528483 !important;
  font-weight: 500;
  font-size: 22px;
  line-height: 18px;
}

.artist-name {
  font-size: 13px;
  margin: 0px;
  font-family: "Montserrat-SemiBold";
  position: relative;
}

.margin-for-all {
  margin: 5px;
}

.support-artist-container {
  align-items: center;
  max-width: 375px;
  width: 100%;
}

.fit-icon {
  margin: 0 6px 0 0 !important;
}

.add-view-note-button {
  font-size: 11px;
  margin: 0 -6px 0 0 !important;
}

.add-note-button {
  font-size: 11.5px;
  margin: 0 !important;
  font-weight: 200;
  position: relative;
  right: -10px;
}

.production-custom-table .add-note-button {
  font-size: 11.5px;
  font-weight: 200;
  position: relative;
  margin: 0;
  right: -6px;
}

.production-custom-table .financial-tab .add-note-button {
  right: 0;
  height: 96%;
  display: flex;
  align-items: center;
}

.production-custom-table .production-note .add-note-button {
  right: 3px;
}

.hospitality-tab .add-note-button {
  font-size: 11.5px;
  font-weight: 200;
  position: relative;
  margin: 0;
  right: 0;
}

.event-card {
  margin: 3px 0 !important;
}

.production-custom-table .event-card {
  width: 100%;
}

/* schedule tab */
.main-artist-name {
  line-height: 12px;
  font-size: 16px;
  color: #528483 !important;
}

.financial-tab .main-artist-name {
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 15px;
}

.artist-name-shedule {
  font-size: 17px;
  margin: 0 10px;
  font-weight: 500;
}

.schedule-profile {
  border: 1px solid gray;
  background-color: #f3efef6b;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 4px 4px 4px rgba(0.2, 0.2, 0.2, 0.2);
  display: flex;
  min-height: 84px;
  padding-left: 5px;
  margin: 2px 0;
  align-items: center;
}

.schedule-profile img {
  width: 70px;
  min-width: 70px;
  border-radius: 50%;
  height: 70px;
  max-width: 70px;
}

.financial-tab .schedule-profile img {
  width: 74px;
  min-width: 74px;
  border-radius: 50%;
  height: 74px;
  max-width: 74px;
}

.artist-dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 8px;
}

.prod-box .artist-dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: -7px;
}

.artist-container {
  display: flex;
  margin: -0.5rem 0;
  padding: 0.1rem 0;
}

.submit-button {
  width: 100%;
}

.artist-Name {
  font-size: 14px;
}

.artist-box-pa {
  margin-top: 5px;
  position: relative;
  display: flex;
  align-items: center;
}

.default-stepper {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  margin-top: 70px;
  flex: 0 0 auto;
  max-width: 1400px;
}

.stepper {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  margin-top: 70px;
  min-width: 610px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 8px;
}

/* .timeline {
  margin-left: auto;
  margin-right: auto;
} */

/* Custom scrollbar for the timeline details */
.timeline::-webkit-scrollbar {
  height: 6px;
}

.timeline::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border-radius: 10px;
}

.timeline::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

.progress-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding-bottom: 40px;
}

.progress-container::before {
  content: "";
  background-color: #528483;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 3px;
  width: 100%;
  z-index: 0;
}

.progress-container .progress {
  display: flex;
  overflow: hidden;
  line-height: 0;
  font-size: .75rem;
  border-radius: .25rem;
  background-color: blue;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 0;
  z-index: 1;
  transition: 0.4s ease;
}

.progress-container .circle {
  background-color: #fff;
  color: #528483;
  scale: 1.1;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
  z-index: 2;
  margin-top: 40px;
}

.circle .icon {
  position: absolute;
  font-size: 20px;
  bottom: 66px;
  color: #528483;
}

.circle .icon img {
  width: 26px !important;
}

.circle .caption {
  position: static;
  font-size: 9px;
  font-weight: normal;
  color: #528483;
  margin-top: -70px;
  text-align: center;
  white-space: nowrap;
}

.hospitality-tab label {
  margin: 0 15px 0 0;
}

.hospitality-tab input[type=radio] {
  margin: 0 5px 0 0;
}

.hospitality-tab .viewnote-btn {
  margin: 0 !important;
  padding: 0 !important;
  justify-content: left !important;
}

.hospitality-tab .viewnote-btn a {
  margin: 0;
}

.hospitality-tab .form-control {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  height: 38px;
  padding: 0 0 0 6px !important;
  text-align: center;
}

.hospitality-tab .graph {
  padding: 0;
  display: flex;
  align-items: center;
  height: auto;
}

.hospitality-tab p.artist-name img {
  max-width: 25px;
}

.hospitality-tab .artist-avatar {
  width: 100px;
  height: 100px;
  padding: 0;
  margin: 0 20px 0 0;
}

.hospitality-tab .box {
  display: inline-flex;
  max-width: 340px;
  min-width: 340px;
}

.hospitality-tab .box .event-card {
  width: 100%;
}

.hospitality-tab .box .p-1 {
  padding: 0 !important;
}

.hospitality-tab .box .event-card .event-info {
  min-width: 202px;
}

.hospitality-tab .box .event-card .event-info input[type="number"] {
  width: 65px;
}

.hospitality-tab .box .event-card .event-info label {
  font-size: 13px;
  margin: 0 10px 0 0 !important;
  padding: 0 !important;
}

.hospitality-tab .box .schedule-profile {
  height: 105px;
  display: flex;
  flex-wrap: nowrap;
}

.hospitality-tab .box .event-card .party-form-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.hospitality-tab .box .event-card .party-form-group .invalid-feedback {
  font-size: 75%;
  display: flex;
  justify-content: end;
}

.hospitality-tab .mike-icon {
  top: 2px !important;
}

.hospitality-tab .general-box {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.hospitality-tab .artist-name {
  min-height: 36px;
  padding: 0;
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;
}

.catering-artists img {
  border-radius: 50%;
  height: 105px;
  width: 105px;
}

.catering-artists .artist-name img {
  /* border-radius: 50%; */
  display: inline-block;
  width: 20px;
}

.advancing-checkbox {
  text-align: center !important;
}

/* .artist-box-pa .mike-icon {
  position: absolute;
  left: 0;
  top: -7px;
} */

/* .artist-name .mike-icon {
  position: absolute;
  left: 0;
  top: -3px;
} */

.artist-container .event-card {
  min-width: 321px;
  max-width: 100%;
  width: 100%;
}

.event-card .event-info .artist-box-pa .artist-Name {
  display: block;
  padding: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: normal;
  word-break: break-word;
}

.prod-profile .artist-name {
  position: relative;
  padding: 0 0 0 20px;
  margin: 7px 0 0;
}

.prod-profile .general-box {
  display: block;
  padding: 0 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: normal;
  min-width: 200px;
}

.prod-profile .venue-name {
  display: block;
  padding: 0 5px 0 3px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: normal;
  min-height: 45px;
}

.schedule-profile .venue-name {
  display: block;
  padding: 0 5px 0 3px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: normal;
  min-height: 45px;
}

.nav-tabs .nav-link {
  cursor: pointer;
}

.ck.ck-editor__main .ck.ck-content {
  height: 150px;
  overflow-y: auto;
}

.popup-note-production {
  padding: 0.3rem 0.5rem !important;
}

.artists-profile-details .artist-name img {
  height: 30px;
}

.pa-loading-form-group .time-checkbox-container {
  display: flex;
  align-items: center;
}

.pa-loading-form-group .time-outer {
  width: 100%;
}

.pa-loading-form-group .time-outer .k-input {
  padding-right: 0;
}

.pa-loading-form-group .time-outer .form-control {
  padding: 0 !important;
}

.pa-loading-form-group .custom-checkbox .custom-control-label {
  font-size: 13px;
}

.no-data-ticketing-table .k-grid {
  min-width: 520px !important;
}


.toggle-switch-container .k-switch-off .k-switch-handle {
  height: 24px !important;
}

.toggle-switch-container .k-switch-off .k-switch-handle {
  height: 24px !important;
}

.toggle-switch-container .k-switch-on .k-switch-handle {
  height: 24px !important;
}

.toggle-switch-container .k-switch-off .k-switch-label-off {
  color: #ffffff;
}

.toggle-switch-container .k-switch-on .k-switch-container {
  background-color: #528483;
}

#isAddPALoadingTime {
  margin: 0 10px !important;
  background-color: #528483;
}

#isAddBackLineTime {
  margin: 0 10px !important;
  background-color: #528483;
}

.schedule-card {
  padding: 0 15px 0 0;
}

.financial-tab .schedule-card {
  padding: 0 !important;
}

.financial-tab .viewnote-btn {
  justify-content: start !important;
  margin: 0 !important;
  padding: 0 !important
}

.schedule-card .left-sec {
  min-width: 320px;
  max-width: 355px;
  padding-right: 30px;

}

.financial-tab .left-sec {
  flex-wrap: wrap;
  margin-top: 20px;
}

.redirect-button {
  display: flex;
  float: right;
  margin: -27px 0;
}

.schedule-card .right-sec {
  flex: 1;
}

@media (max-width: 1200px) {
  .schedule-card {
    flex-wrap: wrap;
  }

  .schedule-card .right-sec {
    flex: auto;
    padding-left: 15px;
  }

  .artists-by-genre .artists-profile .artist-avatar {
    left: 27px;
  }

  .artists-by-genre .artists-profile .artist-avatar img {
    width: 90px !important;
    height: 90px !important;
  }

  .artists-by-genre .artists-profile .artists-profile-details {
    padding: 10px 0 0 125px;
  }
}

.profile-name {
  display: flex;
  flex-wrap: wrap;
}

.profile-name .event-info {
  flex: 1
}

@media (max-width: 490px) {
  .edit-artist-text .event-card .event .profile-name {
    flex-wrap: wrap;
    padding: 15px !important;

  }

  .schedule-card .left-sec {
    min-width: 100px;
  }



  .prod-profile .general-box {
    white-space: normal;
    padding: 0 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: inherit !important;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: visible !important;
    line-height: normal;
    min-height: 32px;
    min-width: 10px;

  }
}

.production-custom-table .k-grid-header {
  padding-right: 1px;
}

/* schedule-accordion */
.schedule-accordion .btn-header-link {
  display: flex !important;
  justify-content: flex-start;
  align-items: flex-start;
}

.schedule-accordion .btn-header-link .main-artist-name {
  min-width: 90px;
  width: 100%;
  display: block;
  position: relative;
  top: 7px;
}

.profile-name .event-info {
  flex: 1;
  padding-left: 10px !important;
}

.clear-button-production {
  color: rgba(0, 0, 0, 0.38);
  align-items: center;
  justify-content: center;
}

.financial-tab .viewnote-btn {
  justify-content: start !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ticketig-box {
  margin-top: 23px;
}

.notes-list .Component-horizontalScrollContainer-5 div:first-of-type {
  border: 0 !important;
  border-radius: 0 !important;
}

.select-files {
  margin-right: -14px;
}

.ticketing-header {
  color: #528483;
  font-weight: 500;
}

.production-document-tab {
  margin: 10px 0;
}

.production-contact-main-page {
  background-color: #e7eaef;
}

.schedule-accordion .btn-header-link .artist-name-shedule {
  flex: 1;
}

/* production-custom-table */
.production-custom-table .advancing-grid .k-grid-header table {
  min-width: 100%;
  width: 100%;
  overflow: auto;
}

.production-custom-table .advancing-grid .k-grid-container table {
  min-width: 100%;
  overflow: auto;
}

.production-custom-table .k-grid-content {
  overflow-y: auto;
}

/* show-listing-table */
.show-listing-table .k-grid-header table {
  min-width: 100%;
  width: 100%;
  overflow: auto;
}

.show-listing-table .k-grid-container table {
  min-width: 100%;
  width: 100%;
  overflow: auto;
}

/* view-info-popup */
.view-info-popup .k-grid-header {
  min-width: 100%;
  padding-right: 0 !important;
}

.view-info-popup .k-grid-header .k-grid-header-wrap table {
  min-width: 100%;
}

.view-info-popup .k-grid-content {
  min-width: 100%;
  overflow-y: auto !important;
}

.view-info-popup .k-grid-table {
  min-width: 100% !important;
  padding-right: 0 !important;
}

/* kendo table width issue on window resize */
.k-grid-header table,
.k-grid table {
  min-width: 100%;
}

.production-custom-table .notes-btn {
  margin-right: 0 !important;
}


/* macOS safari, mozilla and google chrome hack */
/* For Safari only */
@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance: none) {

    /* Safari-specific styles go here */
    .MuiTable-root th .MuiTableSortLabel-root {
      font-family: "Montserrat-SemiBold";
      font-weight: 500;
    }

  }
}

@media screen and (min--moz-device-pixel-ratio:0) and (min-device-pixel-ratio:0) {

  /* This targets WebKit-based browsers, including Safari on macOS */
  .MuiTable-root th .MuiTableSortLabel-root {
    font-family: "Montserrat-SemiBold";
    font-weight: 500;
  }
}

/* Target MacOS devices */
@media (min-device-width: 1280px) and (-webkit-min-device-pixel-ratio: 1) {

  /* Styles for macOS devices go here */
  .MuiTable-root th .MuiTableSortLabel-root {
    font-family: "Montserrat-SemiBold";
    font-weight: 500;
  }
}

.redirect {
  margin: 0 0 4px 0;
}

.labeltext-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-bottom: 1px !important;
}

.mt-20 {
  margin-top: 20px;
}

/* user details card */
@media (max-width: 500px) {
  .artists-by-genre .program-details-row .program-details-label {
    width: 100%;
  }

  .artists-by-genre .program-details-row .program-details-label br {
    display: none;
  }

  .artists-by-genre .program-details-row .program-details-value {
    width: 100%;
  }
}

.program-details .program-ellipsis-text {
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: break-spaces;
  word-wrap: break-word;
}

.program-details .program-ellipsis-tour-manager {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: break-spaces;
  word-wrap: break-word;
}

.catering-supplier input {
  text-align: start !important;
}

@media (max-width: 768px) {
  .production-custom-table .event-card {
    max-width: 100% !important;
    min-width: 100px;
  }

  .financial-tab .profile-name .event-info {
    max-width: 100% !important;
  }

  .schedule-card .left-sec {
    max-width: 100% !important;
    width: 100%;
    padding-right: 0 !important;
  }

  .support-artist-container {
    max-width: 100% !important;
  }
}

.disabled-production-note {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

.support-act .has-value .Select-control {
  max-height: 91px;
  overflow: auto;
  display: flex;
  align-items: start;
}

.catering-input {
  display: inline;
  width: 300px;
  text-align: start !important;
}

#catering-toggle {
  background-color: #528483;
}


.btn-schedule-submit {
  width: 100%;
  min-width: 90px;
  margin: 36px 0 0 0;
}

.schedule-date-form-group {
  min-width: 150px;
  padding: 0 8px;
}

@media (min-width: 1280px) {
  .schedule-date-form-group {
    width: 20%;
    flex: 0 0 20%;
  }
}

.disabled-link {
  color: #ccc;
  cursor: not-allowed;
}

/* general-tab-content */
.general-tab-content .artist-name {
  display: flex;
  align-items: center;
  padding: 0 !important;
}

.general-tab-content .artist-name .mike-icon {
  position: static !important;
}

.nav-link.venue-color {
  pointer-events: none;
  cursor: not-allowed;
  background-color: #fff;
}

.production-custom-table .hospitality-tab .add-note-btn-box {
  width: auto !important;
}

.artists-by-genre .artists-profile .artists-profile-details .venue-name {
  color: #000 !important;
}


.artists-by-genre .artists-profile .artists-profile-details .venue-name :hover {
  text-decoration-style: none;
}


/* */
.cash-related-notes-container {
  display: flex;
  align-items: center;
}

.cash-related-notes-container .viewnote-btn {
  width: auto;
}

.advertising-contribution-col {
  position: relative;
  top: 2px;
}

.financial-tab .add-view-note-button {
  font-size: 14px;
  position: relative;
  bottom: -2px;
}

.financial-tab .profile-name .event-info {
  max-width: 218px;
}

.financial-tab .add-note-button {
  font-size: 14px;
}

.financial-tab .btn-submit {
  position: relative;
  bottom: 3px;
}

@media (max-width: 1400px) {
  .financial-tab .schedule-card .right-sec {

    flex: auto !important;
    width: 100%;
    margin-top: 20px !important;
    padding-left: 15px;
  }

}

@media (max-width: 767px) {
  .financial-tab .btn-submit-col {
    padding-left: 15px !important;
  }

  .financial-tab .btn-submit {
    margin-top: 15px;
  }
}

.card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 10px;
  margin: 20px 0 0 0;
  width: 100%;
  height: 100%;
}

/* Zoomed in (larger viewport width) */
@media (min-width: 1601px) {
  .card-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }
}


/* Zoomed in (larger viewport width) */
@media (min-width: 1921px) {
  .card-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));

  }
}

@media (min-width: 3841px) {
  .card-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  }
}

@media (min-width: 4800px) {
  .card-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));

  }
}

.artist-card {
  background-color: #f3efef6b;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 4px 4px 4px rgba(0.2, 0.2, 0.2, 0.2);
  min-height: 110px;
  max-height: 110px;
  display: inline-flex;
  align-items: center;
  padding: 5px;
  margin: 3px;
}

.artist-card .artist-card-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.artist-card .artist-img-container {
  width: 75px;
  min-width: 75px;
  margin: 0 15px 0 0;
}

.artist-card .artist-img-container .artist-img {
  width: 75px;
  min-width: 75px;
  max-width: 75px;
  height: 75px;
  border-radius: 50%;
}

.artist-card .artist-info {
  flex: 1;
}

.artist-card .artist-info .artist-title {
  display: flex;
  align-items: center;
  max-height: 40px;
  margin: 0 0 15px 0;
}

.artist-card .artist-info .artist-title-text {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: normal;
  word-break: break-word;
  margin: 0;
  padding: 0 0 0 10px;
}

.artist-card .artist-info .btn-add-note {
  font-size: 11.5px;
  font-weight: 200;
  position: relative;
  width: 85px;
  display: block;
  margin: 0 0 0 auto;
}

.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
}

/* Support */
.support-artist-card {
  background-color: #f3efef6b;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 4px 4px 4px rgba(0.2, 0.2, 0.2, 0.2);
  min-height: 110px;
  max-height: 110px;
  display: inline-flex;
  align-items: center;
  padding: 5px;
  margin: 3px;
}

.support-artist-card .artist-card-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.support-artist-card .artist-img-container {
  width: 75px;
  min-width: 75px;
  margin: 0 15px 0 0;
}

.support-artist-card .artist-img-container .artist-img {
  width: 75px;
  min-width: 75px;
  max-width: 75px;
  height: 75px;
  border-radius: 50%;
}

.support-artist-card .artist-info {
  flex: 1;
}

.support-artist-card .artist-info .artist-title {
  display: flex;
  align-items: center;
  max-height: 40px;
  margin: 0 0 15px 0;
}

.support-artist-card .artist-info .artist-title-text {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: normal;
  margin: 0;
  padding: 0 0 0 10px;
}

.support-artist-card .artist-info .btn-add-note {
  font-size: 11.5px;
  font-weight: 200;
  position: relative;
  width: 85px;
  display: block;
  margin: 0 0 0 auto;
}

.artist-card .party-form-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.artist-card .party-form-group label {
  font-size: 13px;
  margin: 0 10px 0 0 !important;
  padding: 0 !important;
}

.artist-card .party-form-group .form-control {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  width: 65px;
  height: 38px;
  padding: 0 0 0 6px !important;
  text-align: center;
}

/* Support */
.support-artist-card .party-form-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.support-artist-card .party-form-group label {
  font-size: 13px;
  margin: 0 10px 0 0 !important;
  padding: 0 !important;
}

.support-artist-card .party-form-group .form-control {
  font-family: "Montserrat-Light";
  font-size: 14px;
  background: #f6f7f9;
  border: 1px solid #bacecd;
  border-radius: 5px;
  width: 65px;
  height: 38px;
  padding: 0 0 0 6px !important;
  text-align: center;
}

.document-listing-navbar a {
  margin: 0 !important;
  color: #528483 !important;
}

.add-show-action-button {
  width: 80px;
}

.manage-phase .modal {
  z-index: 1040;
}

.manage-phase .modal-backdrop {
  z-index: 1030;
  /* Ensure it's below the modal */
}

.manage-phase .modal .modal-dialog {
  z-index: 1050;
  /* Higher than backdrop, but make sure dropdown z-index is higher */
}

.manage-phase .modal-body {
  overflow-y: auto !important;
}

.phase-time-picker .k-timepicker {
  z-index: 1 !important;
}

.page-container-public-holiday {
  padding: 0 !important;
}

.form-box-public-holiday {
  margin: 1px 0 -5px !important;
  padding: 7px 5px !important;
}

.public-holiday-modal {
  padding: 0.5rem !important;
}

.report-date-config-icon {
  width: 17px !important;
}

/* ticket-allocation-grid */
.table-listing-outer .position-relative .table.ticket-allocation-grid th {
  vertical-align: top !important;
  text-align: center;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid thead tr th {
  background: #dce6e6;
  color: #000;
  font-size: 15px;
  border: 1px solid #c0d2d2;
  border-bottom: solid 5px #b2c8c8;
  /* white-space: nowrap; */
  font-family: "Montserrat-Light";
  min-height: 70px;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid th:nth-child(1) {
  border-bottom: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  /* height: 85px; */
}

.table-listing-outer .position-relative .table.ticket-allocation-grid th:nth-child(1),
.table-listing-outer .position-relative .table.ticket-allocation-grid td:nth-child(1) {
  width: 102px !important;
  min-width: 102px !important;
  max-width: 102px !important;
  min-height: 40px;
  /* border-left: solid 1px #b2c8c8 !important; */
  position: absolute;
  left: 24px;
  margin-top: 0;
  z-index: 999;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid td:nth-child(1) {
  min-height: 91px;
  border-bottom: 0 !important;
  border-right: 0;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid th:nth-child(2) {
  width: 102px !important;
  min-width: 102px !important;
  max-width: 102px !important;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid td:nth-child(2) {
  width: 102px !important;
  min-width: 102px !important;
  max-width: 102px !important;
  height: 92px;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid tbody tr:nth-child(even) {
  background-color: #f6f9f9;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid tr td:nth-child(1) {
  background: #fff !important;
  text-align: center !important;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid tbody tr:nth-child(even) td:nth-child(1) {
  background-color: #f6f9f9 !important;
}


.table-listing-outer .position-relative .table.ticket-allocation-grid td:nth-child(3) {
  min-width: 320px;
  text-align: center;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid td:nth-child(3) .form-control {
  display: inline-block;
  border-radius: 50px;
  max-width: 212px;
  width: 100%;
  margin: 0 15px 0 0;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid td:nth-child(3) .custom-checkbox {
  display: inline-block;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid td:nth-child(4) {
  min-width: 160px !important;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid td:nth-child(5) {
  min-width: 130px !important;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid td:nth-child(6) {
  min-width: 180px !important;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid td:nth-child(7) {
  min-width: 130px !important;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid td:nth-child(n+8) {
  min-width: 150px !important;
  max-width: 150px;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid tbody tr:nth-child(1) td:nth-child(1) {
  margin-top: 2px;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid th:nth-child(n+8) span {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: normal;
}

/* allocate-tickets-grid */
.allocate-tickets-grid .action-btn {
  color: #fff !important;
  background-color: #528483;
  border-color: #528483;
  white-space: nowrap;
  font-size: 12px !important;
  padding: 5px 8px;
  margin: 5px 2px !important;
  max-width: 150px;
}

.table-listing-outer .position-relative .table.ticket-allocation-grid td:nth-child(1).allocate-ticket-btn-container {
  width: 100% !important;
  max-width: 100% !important;
  position: static !important;
}

.new-contact-role .Select-menu {
  max-height: 125px !important;
  overflow-y: auto;
  z-index: 1050 !important;
}

.edit-sale-page-sold-value {
  max-width: 95% !important;
  width: 95% !important;
}

.k-radio:checked,
.k-radio.k-checked {
  border-color: #528483 !important;
  background-color: #528483 !important;
  color: white !important;
}

/* Ensure no hover effect */
.k-radio:hover {
  background-color: transparent;
}

.show-tab-listing .k-grid-header {
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
}

.previous-upload-figure {
  background-color: red;
  border: 1px solid #c0d2d2 !important
}

.previous-upload-figure td {
  border: 0 !important;
}

.last-sale-date-upload {
  color: red;
  border: 1px solid #c0d2d2 !important
}

.last-sale-date-upload td {
  border: 0 !important;
}

/* k-list-container */
.k-list-container .k-state-selected {
  background-color: #528483 !important;
}

.approve-button {
  height: 37px;
  margin: 5px;
}

.show-date-avail-calender {
  width: 107px !important;
}

.avail-hold {
  width: 8% !important;
}

.table-listing-outer .closing-advance-report .table tbody tr td {
  word-break: break-word;
}

.destination-field .has-value .Select-control {
  max-height: 91px;
  overflow: auto;
  display: flex;
  align-items: start;
}

.destination-field .has-value .Select-control {
  min-width: 109%;
}

.show-status-bar {
  justify-content: space-around !important;
}

.selectdate {
  width: 120px !important;
}

.progressBar {
  width: 100% !important;
}

.progressBar .bg-success {
  width: 100% !important;
}

/* .csvtable .k-grid-header {
  padding-inline-start: 0;
  padding-inline-end: 0;
} */

.progress-error {
  width: 100% !important;
}

.progressBar .bg-success {
  width: 100% !important;
}

.text-dark-green {
  color: #528483;
}

/* .document-status select {
  min-width: 230px !important;
}

.document-type select {
  min-width: 230px !important;
}

.tour-Status select {
  min-width: 230px !important;
}

.document-select-year select {
  min-width: 230px !important;
} */

/* document-management */
.document-management {
  width: 100%;
}

.document-management label {
  width: 100%;
  max-width: 150px;
  text-align: right;
}

.document-management select {
  min-width: 220px !important;
  width: 220px;
}

.document-management .select-show-dropdown {
  margin-bottom: 15px !important;
}

.document-management .input-group {
  margin-bottom: 10px;
}

@media (max-width: 1439px) {
  .document-management label {
    width: 100%;
    text-align: right;
  }

  .document-management select {
    min-width: 190px !important;
    width: 190px;
  }
}

.fit-height-save-call {
  height: 110vh;
}

.text-dark-green-finance:hover {
  color: #528483 !important;
  background-color: white;
}

.error-msg-document {
  margin: 36px 14px 20px 162px;
}

.progress-error .progress-bar {
  color: #2c1919 !important;
  background-color: #e9ecef !important;
}

.no-events-message {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 96px 0 0 438px;
}

.tours-icon {
  margin-left: 0;
  margin-right: 8px;
}

.dashboard-icon {
  max-width: 26px;
}

.dashboard-icon-button {
  margin: 30px 12px 0 0;
}

.upload-type{
  margin: 0 0 0 -16px !important;
  font-size: 22px;
}

.future-check-box{
  margin: 0 0 0 -12px !important;
}

/* artist table */
.artist-action-btn {
  background: none !important;
  border: none !important;
}

.artist-action-btn .Clear {
  color: #e8542c !important;
}

.artist-list .k-grid-header{
  padding: 0 !important;
}

.artist-list .k-grid-content{
  overflow-y: hidden;
}

.clear-icon-button {
  color: rgb(232, 84, 44) !important;
}

.artist-list .k-column-title {
  font-family: "Montserrat-SemiBold";
  font-weight: 500;
}

.new-contact-venue .modal-header {
  padding: 0.2rem 0rem!important;
}

.process-mapping-table .k-grid-header th {
  text-align: center !important;
  vertical-align: middle !important;
  cursor: grab;
}

 .process-mapping-table .k-grid-header th span{
  font-weight: bold !important;
  /* font-family: Montserrat-SemiBold; */
  font-weight: 500;
}

.process-mapping-table .k-grid-header th td{
  font-weight: bold !important;
  text-align: center !important;
  vertical-align: middle !important;
  cursor: grab;
  font-weight: 500;
  padding: 8px 12px;
  border-style: solid;
  border-color: inherit;
  outline: 0;
  font-weight: inherit;
  text-align: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
}

.view-mapping-table .k-grid-header th{
  vertical-align: middle !important;
  cursor: grab;
}

.new-contact-venue .modal-header {
  padding: 0.2rem 0rem!important;
}

.static-report-select label {
width: 151px!important;
}

.confirmation-report-table-head-row {
  background: #dce6e6;
  font-family: 'Source Sans Pro', Calibri, Helvetica, Arial, sans-serif;
  color: #333;
  font-size: 14px;
  padding: 5px 10px;
  border-right: 1px solid #c0d2d2;
}

.confirmation-report-row {
  padding: 5px 10px;
  border-bottom: 1px solid #e7eaef;
}

.confirmation-report-font {
  font-family: 'Source Sans Pro', Calibri, Helvetica, Arial, sans-serif;
  color: #333;
  font-size: 14px;
}

.confirmation-report-span {
  padding: 5px 10px;
  font-family: 'Source Sans Pro', Calibri, Helvetica, Arial, sans-serif;
  color: #333;
  font-size: 14px;
}

.confirmation-report-table-head-row {
  background: #dce6e6;
  font-family: 'Source Sans Pro', Calibri, Helvetica, Arial, sans-serif;
  color: #333;
  font-size: 14px;
  padding: 5px 10px;
  border-right: 1px solid #c0d2d2;
}

.confirmation-report-table-content {
  font-family: 'Source Sans Pro', Calibri, Helvetica, Arial, sans-serif;
  color: #333;
  font-size: 14px;
  padding: 10px;
  border-right: 1px solid #c0d2d2;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}

.confirmation-report-table-data {
  border-bottom: 1px solid rgb(192, 210, 210);
  font-family: 'Source Sans Pro', Calibri, Helvetica, Arial, sans-serif;
  color: #333;
  font-size: 14px;
  padding: 10px;
  border-right: 1px solid #c0d2d2;
}

.confirmation-report-border-primary {
  border-bottom: 1px solid #c0d2d2;
}

.black-color {
    color: #528483!important;
}

.confirmation-report-row label span{
  color: black!important;
}

.confirmation-report-font label span{
  color: black!important;
}

.black-text {
  color: black!important;
}
