html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

/* Spinner */
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}


.select2-container--default .select2-selection--single {
    background-color: #232223 !important;
    border: 1px solid #424242 !important;
    border-radius: 0 !important;
}

.select2-container .select2-selection--single {
    height: 38px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: #676767 !important;
}
.delete-modal-form button{
    background: transparent;
    border: 0;
    font-size: 14px;
    padding: 0;
}


.msg_cotainer{
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 10px;
    background-color:#293544;
    padding: 10px;
    position: relative;
    min-width: 125px;
    border-radius: 5px;
}
.msg_cotainer_send{
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px;
    background-color: #2a333f;
    padding: 10px;
    position: relative;
    min-width: 125px;
    border-radius: 5px;
}
.msg_time{
    position: absolute;
    left: 0;
    bottom: -18px;
    color: #5c6a7c;
    font-size: 10px;
}
.msg_time_send{
    position: absolute;
    right:0;
    bottom: -18px;
    color: #5c6a7c;
    font-size: 10px;
}
.msg_head{
    position: relative;
    background:#01da86;
    box-shadow: 0 1px 15px 1px rgba(58, 58, 62,.4);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
