/*
border: 2px solid #F0F0F0;
color: , background: #852EC9;

 */

* {
  font-family: "Open Sans", sans-serif;
  font-family: "Poppins", sans-serif;
}
body {
  background: #fff9fe;
  width: 100%;
  height: 100%;
}

html {
  width: 100%;
  height: 100vh;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
}
.flex-space {
  justify-content: space-between;
}
.flex-center-hr {
  justify-content: center;
}
.flex-column {
  flex-direction: column;
}
/* -------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------HEADER----------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */

.header {
  height: 80px;
  background-color: #fff;
  border-bottom: 2px solid #f0f0f0;
}

.logo-header {
  padding-top: 15px;
  padding-left: 40px;
  transform: scale(0.7);
}

/* -------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------SIDE NAV----------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */

.side-nav {
  height: 100%;
  width: 15%;
  background-color: #fff;
  border-right: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
  overflow: hidden;
  float: left;
}
.nav-list {
  padding-top: 40px;
  gap: 15px;
  width: 100%;
}

.nav-link {
  padding: 15px 0;
  color: #000;
  font-weight: 400;
  width: 100%;
}
.nav-link:hover {
  color: #000;
}
.nav-link:focus {
  color: currentColor;
}

.side-nav .nav-list .flex-center {
  gap: 15px;
}
.nav-icon {
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------BODY----------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */

main {
  width: 100%;
  height: 100%;
  float: left;
  /* margin-top: 40px; */
}
.content {
  width: 77%;
  height: 90%;
  min-height: 650px;
  padding-left: 80px;
  padding-top: 40px;
  display: inline-block;
}

.main-heading {
  font-weight: 700;
  font-family: "Poppins";
  color: #852ec9;
  font-size: 24px;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------TABLE----------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */

.status-table {
  height: 60%;
  background-color: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}
.table {
  font-size: 16px;
  font-weight: 400;
}
.table tbody {
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}
thead {
  text-align: center;
}

.row-1 {
  --bs-table-bg: #f9f9fc;
  --bs-table-border-color: inherit;
}
.row-1 td {
  color: #4b4b4b;
  padding: 15px 0;
}
.col--1 {
  padding-left: 45px !important;
  padding-right: 0 !important;
  text-align: left;
  width: 250px;
}
.status-td {
  width: 110px;
}

.status-icon {
  padding: 3px 9px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 12px;
}
.staging {
  background: #cdedff;
  color: #004a7f;
}

.live {
  background: #cdffcd;
  color: #007f00;
  padding: 0 12px;
}
.suspended {
  background-color: #7d7d7d;
  color: #fff;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------BTN----------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */
.btn {
  text-decoration: none;
  color: #fff;
  background-color: #852ec9;
  padding: 5px 10px;

  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.btn:hover {
  color: #fff;
  background-color: #852ec9;
}
.btn:focus {
  background-color: #852ec9 !important;
  color: #fff !important;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------MODAL----------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */
.btn-close:focus {
  box-shadow: none;
}
.modal-content {
  height: 300px;
  width: 800px;
  border: none;
  border-radius: 30px !important;
}

.modal-header,
.modal-body,
.modal-footer {
  padding: 0 0 !important;
  border: none;
}

.modal-body {
  display: flex;
  /* padding-top: 20px !important; */
  align-items: center;
  flex-direction: column;
}

.modal-icon {
  height: 60px;
  margin-bottom: 20px;
}

.modal-heading {
  font-size: 22px;
  text-align: center;
  color: #444;
  font-weight: 600;
  line-height: 32px;
  text-transform: uppercase;
  font-family: "PT Sans";
}

.modal-header {
  display: none;
}
.modal-footer {
  justify-content: center;
}
.modal-footer {
  padding-bottom: 10px !important;
}
.modal-btn {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  text-transform: none !important;
}
.btn-primary {
  background: #872ecd;
  border: none;
}
.btn {
  text-transform: uppercase;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.btn-close {
  align-self: flex-end;
  padding-right: 31px !important;
  padding-top: 19px !important;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------DROPDOWN----------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */
.info-icon {
  cursor: pointer;
}
.dropdown-item:focus {
  background-color: initial;
  color: inherit;
}
.dropdown-item {
  border-bottom: 1px solid #f2f0f9;
}
.delete {
  color: #d30000;
  border: none;
}
.delete:hover,
.delete:focus {
  color: #d30000;
}
.dropdown-menu {
  box-shadow: 2px 6px 12px 0px #dee2e6;
  border: none;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------DROPDOWN----------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */

.form-select {
  background-image: url(../assets/select-arrow.svg);
}

.disabled
{
  pointer-events: none;
  opacity: 0.7;
}
.success-msg
{
  position: absolute;
  bottom: 18px;
  left: 18px;
}