body {
  background: #fff;
  color: #757575;
  font-family: "Varela Round", Arial, "Helvetica Neue", Helvetica, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #444444;
  margin-bottom: 40px;
  /* Margin bottom by footer height */
  /* overflow-x: hidden; */
}

.costum-card {
  width: 100%;
  min-width: 400px;
  border-radius: 1rem;
}

.btn-radius-edge {
  border-radius: 2rem;
  width: 100%;
}

.div-alert-holder {
  position: absolute;
  top: 12vh;
  left: 20px;
  z-index: 99;
  min-width: 200px;
  max-width: 400px;
  width: 100%;
}

.div-container {
  padding: 0 15px 15px 15px;
  /* min-height: 100vh !important; */
  /* border: 5px red solid !important; */
}

.icon-link:hover {
  opacity: 0.5;
  cursor: pointer;
}

.div-container-header {
  min-height: 100% !important;
}

.div-cont-span-email-body {
  max-height: 55vh;
  overflow: auto;
}

#div-container-message-body {
  /* background-color: aqua !important;
  border: 5px red solid !important; */
  min-height: 60vh;
  max-height: 100vh;
  /* overflow: auto;
  display: inline-block; */
}

#table-overview-messages td {
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
}

/* #table-overview-messages td:first-child {
  min-width: 100px !important;
} */

/* #table-overview-messages td:nth-child(3) {
  min-width: 100% !important;
  max-width: 500px !important;
  border: 1px red solid;
} */

/* #table-overview-messages td:nth-child(4) {
  min-width: 100% !important;
  max-width: 150px !important;
  border: 1px red solid;
} */
/* #table-overview-messages td:nth-child(5) {
  min-width: 100% !important;
  max-width: 150px !important;
  border: 1px red solid;
} */
/* #table-overview-messages td:nth-child(6) {
  min-width: 100% !important;
  max-width: 150px !important;
  border: 1px red solid;
} */

#table-overview-messages td {
  min-width: 100px !important;
  max-width: 200px !important;
  /* border: 1px red solid; */
}
#table-overview-messages td:nth-child(1) {
  min-width: 100px !important;
  max-width: 100px !important;
  /* border: 1px red solid; */
}
#table-overview-messages td:nth-child(2) {
  min-width: 10px !important;
  max-width: 10px !important;
  /* border: 1px red solid; */
}
#table-overview-messages td:nth-child(3) {
  min-width: 250px !important;
}

#table-overview-messages td:nth-child(4) {
  min-width: 80px !important;
}
/* #table-overview-messages td:nth-child(8) {
  min-width: 80px !important;
  max-width: 0px !important;
  border: 1px red solid;
} */

.card-body-div-default {
  max-height: 400px;
  overflow: auto;
}

.span-close-card:hover {
  cursor: pointer;
}
.nav-item-custom {
  box-sizing: border-box;
  font-size: 16px;
  min-width: 200px !important;
}

.nav-item-custom:hover {
  background-color: gainsboro;
  cursor: pointer;
  color: #18a0fc;
  width: 200px !important;
}

/* .div-card-hidden {
  display: none !important;
} */

.table-tr-spam {
  background-color: #f8d7da !important;
}

.span-subject-preview {
  color: #18a0fc;
}

.span-subject-preview:hover {
  cursor: pointer;
  text-decoration: underline;
}

#div_panel_info {
  display: none;
}

.div_panel {
  min-height: 420px;
}

.list-group-child {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

.height_0 {
  max-height: 0;
  transition: max-height 0.25s ease-out;
  overflow: hidden;
}

.code-updated {
  margin: 10px 15px;
  padding: 10px 28px 10px 28px;
  display: block;
  text-align: left;
  overflow: auto;
  /* font: normal 12px/1.7em "Lucida Console", "Courier New", monospace; */
  background: #ffffff;
  border: 1px solid #000000;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

code { 
	margin: 10px 15px !important; 
 	padding: 10px 0 10px 28px!important; 
  display: block !important; 
  text-align: left !important; 
  overflow: auto !important; 
  font: normal 12px/1.7em 'Lucida Console', 'Courier New', monospace !important; 
  background: #FFFFFF !important; 
  border: 1px solid #000000 !important; 
  color: #000000 !important;
	white-space: -moz-pre-wrap !important; 
	white-space: -pre-wrap !important; 
	white-space: -o-pre-wrap !important; 
	word-wrap: break-word !important; 
} 


.CodeMirror {
  border: 1px solid black;
  font-family: "Ubuntu Condensed", sans-serif;
  font-size: 11px;
}

.div-alert-holder-low {
  position: fixed;
  top: 80vh;
  right: 5vh;
  z-index: 99;
  /* min-width: 250px; */
}

.slide-to-left {
  left: -200px;
  position: absolute;
  -webkit-animation: slide 0.5s forwards;
  -webkit-animation-delay: 2s;
  animation: slide 0.5s forwards;
  animation-delay: 2s;
}

.slide-in {
  right: -200px;
  position: absolute;
  border: 1px solid red !important;
  transform: translateX(-100%) !important;
  -webkit-transform: translateX(-100%) !important;
}

@-webkit-keyframes slide {
  100% {
    left: 0;
  }
}

@keyframes slide {
  100% {
    left: 0;
  }
}

@keyframes slide-in {
  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slide-in {
  100% {
    -webkit-transform: translateX(0%);
  }
}

.btn-close-custom {
  outline: none !important;
}

.btn-close-custom :focus {
  outline: 0 !important;
  box-shadow: none !important;
}

.cont-mobile-version{

}

#cont-mobile-version-horizontal {
  height: 800px;
  width: 450px;
  position: relative;
  border: 1px solid red;
  background-image: url("../img/iphone_14.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 450px 800px;
}

#cont-mobile-version-vertical {
  height: 450px;
  width: 800px;
  position: relative;
  /* border: 1px solid red; */
  background-image: url("../img/iphone_14_v.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 800px 450px;
}

#img-iphone {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 99;
}

/* #cont-span-m-mobile-version-horizontal {
  height: 680px;
  width: 378px;
  overflow: auto;
  border: 1px solid blue;
  position: absolute; 
} */

/* #cont-span-m-mobile-version-vertical {
  height: 378px;
  width: 680px;
  overflow: auto;
  border: 1px solid blue;
  position: absolute;
} */

#span-m-mobile-version {
  /* position: absolute;
  width: fit-content;
  height: fit-content;
  z-index: 0; */
  zoom: 60%;
}

#div-iphone-nav {
  position: absolute;
  top: 25px;
  width: 100%;
}

#div_mobile_v {
  background-image: url("../img/iphone_14_v.png");
  background-repeat: no-repeat;
  height: 300px;
  width: 650px;
  background-size: cover;
  background-size: 650px 300px;
  margin: 0 auto 30px; 
}

.iframe_mobile_v {
  height: 256px;
  width: 570px;
  position: relative;
  top: 21px;
  left: 38px; 
}

#div_mobile_h {
  background-image: url("../img/iphone_14.png");
  background-repeat: no-repeat;
  height: 650px;
  width: 380px;
  background-size: cover;
  background-size: 380px 650px;
  margin: 0 auto 0px;
}

.iframe_mobile_h {
  height: 560px;
  width: 327px;
  left: 28px;
  position: relative;
}

.bootstrap-select.btn-group .btn .filter-option {
  text-align: right;
}

/* .form-control {
  display: block;
  width: 100%; 
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da; 
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

  border-radius: 2rem !important;
  padding: 0.5rem 1rem;
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
} */

.error-span {
  color: red;
  font-style: italic;
  display: none;
}

#btn-copy-paste {
  display: none;
}

#select-picker-sender-template {
  border: 10px solid red !important;
  height: 100px !important;
}
.dropdown-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.filter-option {
  /* border: 10px solid red !important; */
  width: auto !important;
}

.span-user:hover {
  text-decoration: underline;
  cursor: pointer;
}

.span-filter:hover {
  text-decoration: underline;
  cursor: pointer;
}

.span-ipmon-ip:hover {
  text-decoration: underline;
  cursor: pointer;
}

.div_isp_hidden {
  display: none;
}

.div-error {
  z-index: 199;
  background-color: rgba(178, 186, 187, 0.5);
  /* background-color: red; */
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  right: 0;
}

/* .modal:nth-of-type(even) {
  z-index: 1062 !important;
}

.modal-backdrop.show:nth-of-type(even) {
  z-index: 1061 !important;
} */
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark { 
  position: absolute; display: none; right: 15px; margin-top: 5px; }

.td-danger {
  color: red;
  /* background-color: red; */
  height: 100%;
  width: 100%;
}

.code-message { 
	margin: 10px 15px; 
 	padding: 10px 0 10px 28px; 
  	display: block; 
  	text-align: left; 
  	overflow: auto; 
  	font: normal 12px/1.7em 'Lucida Console', 'Courier New', monospace ; 
  	background: #FFFFFF; 
  	border: 1px solid #000000; 
	white-space: -moz-pre-wrap; 
	white-space: -pre-wrap; 
	white-space: -o-pre-wrap; 
	word-wrap: break-word; 
} 

.pageheader {
  border-bottom: 4px solid #18a0fc !important;
  border-radius: 4px !important;
  margin: 25px 0 20px !important;
  max-width: fit-content;
}
