.cancel {
      width: 100px;
      height: 100px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .cancel::before,
    .cancel::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 10px;
      background-color: red;
    }

    .cancel::before {
      transform: rotate(45deg);
    }

    .cancel::after {
      transform: rotate(-45deg);
    }




/*
* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
        }

        .chat-container {
            max-width: 500px;
            margin: 20px auto;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .chat-header {
            padding: 10px;
            background-color: #075e54;
            color: #fff;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }

        .chat-header h2 {
            font-size: 16px;
            margin: 0;
        }

        .chat-messages {
            max-height: 400px;
            overflow-y: auto;
            padding: 127px;
        }

        .chat-message {
            display: flex;
            flex-direction: column;
            margin-bottom: 10px;
        }

        .chat-message .sender-name {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .chat-message .message-text {
            background-color: #f2f2f2;
            padding: 8px;
            border-radius: 5px;
            display: inline-block;
            max-width: 70%;
        }

        .chat-message .message-time {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
            align-self: flex-end;
        }

        .chat-input {
            padding: 10px;
            display: flex;
            align-items: center;
            background-color: #f2f2f2;
            margin-top: 234px;
        }

        .chat-input input[type="text"] {
            flex: 1;
            padding: 8px;
            border: none;
            border-radius: 20px;
            margin-right: 10px;
        }

        .chat-input input[type="submit"] {
            background-color: #075e54;
            color: #fff;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
        }
*/

 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
        }

        .chat-container {
            max-width: 500px;
            margin: 20px auto;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .chat-header {
            padding: 10px;
            background-color: #075e54;
            color: #fff;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }

        .chat-header h2 {
            font-size: 16px;
            margin: 0;
        }

        .chat-messages {
            max-height: 400px;
            overflow-y: auto;
            padding: 10px;
        }

        .chat-message {
            display: flex;
            flex-direction: column;
            margin-bottom: 10px;
        }

        .chat-message .message-text {
            background-color: #f2f2f2;
            padding: 8px;
            border-radius: 5px;
            display: inline-block;
            max-width: 70%;
        }

        .chat-message .message-time-left {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
            align-self: left;
        }.chat-message .message-time {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
            align-self: flex-end;
        }

        .chat-message.sent .message-text {
            align-self: flex-end;
            background-color: #dcf8c6;
        }

        .chat-message.received .message-text {
            align-self: flex-start;
            background-color: #f2f2f2;
        }

        .chat-input {
            padding: 10px;
            display: flex;
            align-items: center;
            background-color: #f2f2f2;
        }

        .chat-input input[type="text"] {
            flex: 1;
            padding: 8px;
            border: none;
            border-radius: 20px;
            margin-right: 10px;
        }

        .chat-input input[type="submit"] {
            background-color: #075e54;
            color: #fff;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
        }








.chat-icon {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background-color: #f44336;
      color: white;
      border-radius: 50%;
      text-align: center;
      line-height: 50px;
      cursor: pointer;
    }
    
    /* Styles for the chat box */
    .chat-box {
      position: fixed;
      bottom: 128px;
      right: 20px;
      width: 300px;
      height: 400px;
      background-color: white;
      border: 1px solid #ccc;
      display: none;
    }	


.card {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
 
.card-img-top {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}
.border-0 {
  border: 0 !important;
}


.card-header {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header h5 {
  margin-bottom: 0;
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
		.text-center {
  text-align: center !important;
}
		@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
			
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  
}
			
}
		@media (min-width: 992px)  {
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
			.col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  
}
}
		@media (min-width: 1200px) {
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
			.col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  
}
}
		@media (min-width: 576px) {
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}
@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}


.mb-3 {
  margin-bottom: 2rem;
}		
		

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
	.vidlenth{
	   width: 50%;
	}
}
.rounded-circle {
  border-radius: 50%;
}

.text-white {
  color: #fff;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}
.col-sm-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.text-warning {
  color: #ffc107;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mt-4 {
  margin-top: 1rem !important;
}
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-body- {
  flex: 1 1 auto;
  padding: -1.75rem;
}

@media (min-width: 768px) AND (max-width: 991px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
	.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
	.col-sm-4 {
    flex: 0 0 auto;
  width: 33.333333%;
  max-width: 33.333333%;
  }
}

@media (max-width: 575.98px) {
  .col-xs-6 {
    flex: 0 0 auto;
    width: 50%;
  }
	.col-xs-4 {
   flex: 0 0 auto;
  width: 33.333333%;
  max-width: 33.333333%;
  }
}