@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
.maincolor {
  color: #1800AB;
}

.sndcolor {
  color: #D3DDE7;
}

.thirdcolor {
  color: #E95149;
}

.fourthcolor {
  color: #D5DFB9;
}

.fifthcolor {
  color: #F0F4EF;
}

.dark {
  color: #747474;
}

.light {
  color: #E0D8C7;
}

.white {
  color: #FFFFFF;
}

.black {
  color: #000000;
}

.text {
  color: #414B5A;
}

.bgmain {
  background: #1800AB;
}

.bgsnd {
  background: #D3DDE7;
}

.bgthird {
  background: #E95149;
}

.bgfourth {
  background: #D5DFB9;
}

.bgfifth {
  background: #F0F4EF;
}

.bgdark {
  background: #747474;
}

.bglight {
  background: #E0D8C7;
}

.bgdark {
  background: #747474;
}

.bgwhite {
  background: #FFFFFF;
}

.bgtext {
  background: #414B5A;
}

html, body {
  color: #414B5A;
}

* {
  font-family: "Plus Jakarta Sans", sans-serif;
}

html, body {
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.02em;
  font-style: normal;
  margin: 10px 0;
  font-weight: 400;
}

.heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}
.heading--n1 {
  font-size: clamp(2.5rem, 1.97rem + 1.15vw, 3.4375rem);
  line-height: 1.2;
  letter-spacing: normal;
}
.heading--n2 {
  font-size: clamp(2rem, 1.62rem + 0.75vw, 2.875rem);
  line-height: 1.2;
  letter-spacing: normal;
}
.heading--n3 {
  font-size: clamp(1.5rem, 1.25rem + 0.43vw, 2rem);
  line-height: 1.2;
  letter-spacing: normal;
}
.heading--n4 {
  font-size: clamp(1.125rem, 1rem + 0.22vw, 1.375rem);
  line-height: 1.3;
  letter-spacing: normal;
}
.heading--n5 {
  font-size: clamp(1rem, 0.93rem + 0.12vw, 1.125rem);
  line-height: normal;
  letter-spacing: 0.05em;
}

.legend {
  font-size: 11px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.label {
  font-size: 18px;
  line-height: normal;
  letter-spacing: normal;
  font-weight: 600;
}

span {
  line-height: inherit;
}

hr {
  border: none;
}

.list--unstyled {
  padding: 0px;
  margin: 0px;
}
.list--unstyled li {
  padding: 0px;
  list-style-type: none;
}

.btn {
  appearance: none;
  --webkit-appearance: none;
  --moz-webkit-appearance: none;
  border: none;
  background: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  height: fit-content;
  padding: 12px 20px;
  transition: 0.3s;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.btn:hover, .btn:focus, .btn:active {
  transition: 0.3s;
}
.btn--main {
  background: #1800AB;
  color: white;
  border: 1px solid #1800AB;
}
.btn--main:hover, .btn--main:focus, .btn--main:active {
  background: #FFFFFF;
  color: #1800AB;
  border: 1px solid #1800AB;
}
.btn--main-outline {
  background: #FFFFFF;
  color: #1800AB;
  border: 1px solid #1800AB;
}
.btn--main-outline:hover, .btn--main-outline:focus, .btn--main-outline:active {
  background: #1800AB;
  color: #FFFFFF;
  border: 1px solid #1800AB;
}
.btn--white {
  background: #FFFFFF;
  color: #1800AB;
  border: 1px solid #FFFFFF;
}
.btn--white:hover, .btn--white:focus, .btn--white:active {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.btn--white-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.btn--white-outline:hover, .btn--white-outline:focus, .btn--white-outline:active {
  background: #FFFFFF;
  color: #1800AB;
  border: 1px solid #FFFFFF;
}
.btn--third {
  background: #E95149;
  color: white;
  border: 1px solid #E95149;
}
.btn--third:hover, .btn--third:focus, .btn--third:active {
  background: transparent;
  color: #E95149;
  border: 1px solid #E95149;
}
.btn--third-outline {
  background: transparent;
  color: #E95149;
  border: 1px solid #E95149;
}
.btn--third-outline:hover, .btn--third-outline:focus, .btn--third-outline:active {
  background: #E95149;
  color: #FFFFFF;
}

.login {
  max-width: 100% !important;
  height: 100vh;
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.login .alert {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 90%;
  max-width: 400px;
}
.login__box {
  width: 100%;
  margin: 0 auto;
  max-width: 400px;
  background: #D3DDE7;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 40px;
  box-sizing: border-box;
}
.login__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.login__form-logo {
  text-align: center;
  margin-bottom: 20px;
}
.login__form-input-wrapper {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.login__form-input {
  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  color: #1800AB;
  border-radius: 0;
  border-bottom: 2px solid rgba(233, 81, 73, 0.5);
}
.login__form-input::placeholder {
  color: #1800AB;
}
.login__form-input:focus {
  border-bottom: 2px solid rgb(233, 81, 73);
}
.login__form-checkbox-wrapper {
  align-self: flex-start;
  display: flex;
  align-items: center;
}
.login__form-checkbox {
  margin-inline: 0;
  margin-block: 0;
  width: 18px !important;
  height: 18px;
  cursor: pointer;
  opacity: 1 !important;
  z-index: 1 !important;
  accent-color: #E95149;
}
.login__form-checkbox-label {
  color: #1800AB;
  margin-left: 25px;
}
.login__form-link {
  color: #E95149;
  font-weight: 400;
  text-decoration: none;
}
.login__form-link:hover, .login__form-link:focus, .login__form-link:active {
  font-weight: 700;
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 280px;
  z-index: 1050;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  background-color: #FFFFFF;
  overflow: hidden;
}
@media screen and (min-width: 991px) {
  .sidebar {
    display: block;
    z-index: 1000;
  }
}
@media screen and (max-width: 991px) {
  .sidebar {
    left: -280px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .sidebar.show {
    left: 0;
  }
}
.sidebar ul {
  margin-block: 0;
  margin-inline: 0;
  padding-inline: 0;
  list-style-type: none;
}
.sidebar a {
  text-decoration: none;
  color: #414B5A;
}
.sidebar__logo {
  max-height: 90px;
  padding: 20px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.sidebar__menu {
  overflow: auto;
  height: calc(100vh - 90px);
}
@media screen and (max-width: 991px) {
  .sidebar__menu {
    height: calc(100vh - 90px - 120px);
    padding-bottom: 20px;
  }
}
.sidebar__menu .nav-item .active {
  background-color: #D3DDE7;
}
.sidebar__menu .nav-item {
  padding-left: 20px;
}
.sidebar__menu .nav-item .bi:not(.bi-chevron-right) {
  font-size: 25px;
  color: #E95149;
}
.sidebar__menu .nav-item:first-child {
  padding-block: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.sidebar__menu .nav-item:nth-of-type(2) {
  padding-top: 30px;
}
.sidebar__menu .nav-item {
  padding-bottom: 30px;
}
.sidebar__menu .dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.sidebar__menu .dropdown-toggle .title {
  margin-left: 15px;
  font-size: 16px;
  font-weight: 500;
}
.sidebar__menu .dropdown-toggle i:last-of-type {
  position: absolute;
  right: 20px;
}
.sidebar__menu .sidebar-link {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.sidebar__menu .sidebar-link .title {
  margin-left: 15px;
  font-size: 16px;
  font-weight: 500;
}
.sidebar__menu .dropdown-toggle::after {
  display: none;
}
.sidebar__menu .dropdown-toggle.show .bi-chevron-right {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.sidebar__menu .dropdown-menu {
  position: static !important;
  float: none;
  display: none;
  padding-left: 1.5rem;
  margin: 0 !important;
  border: none;
  background: transparent;
  box-shadow: none;
  transform: none !important;
}
.sidebar__menu .dropdown-menu .sidebar-link {
  font-size: 16px;
  font-weight: 500;
  padding-block: 0.5rem 0.2rem;
}
.sidebar__menu .dropdown-menu.show, .sidebar__menu .dropdown.open > .dropdown-menu {
  display: block;
}
.sidebar__mobile-admin {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
}
@media screen and (max-width: 991px) {
  .sidebar__mobile-admin {
    display: block;
  }
}
.sidebar__mobile-admin .user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.sidebar__mobile-admin .user-info .avatar {
  border-radius: 50%;
}
.sidebar__mobile-admin .user-info .user-name {
  font-weight: 500;
  color: #414B5A;
  font-size: 14px;
}
.sidebar__mobile-admin .admin-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar__mobile-admin .admin-actions a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #414B5A;
  text-decoration: none;
  font-size: 14px;
}
.sidebar__mobile-admin .admin-actions a .bi {
  font-size: 18px;
  color: #E95149;
}
.sidebar__mobile-admin .admin-actions a:hover {
  color: #E95149;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}
@media screen and (max-width: 991px) {
  .sidebar-overlay.show {
    display: block;
  }
}

.adminbar {
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: block;
  height: 90px;
  max-height: 90px;
  margin-bottom: 0;
  padding: 0;
  position: fixed;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
  z-index: 800;
  top: 0;
}
.adminbar-container {
  height: 100%;
}
.adminbar .sidebar-toggle {
  display: flex;
  align-items: center;
  height: 100%;
}
.adminbar .sidebar-toggle .bi-list {
  font-size: 40px;
  color: #E95149;
  cursor: pointer;
}
.adminbar ul {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.adminbar .nav-left {
  display: none;
  float: left;
  margin-left: 15px;
}
.adminbar .nav-right {
  float: right;
  margin-right: 2rem;
}
.adminbar .nav-right .dropdown-toggle:first-child {
  display: flex;
  align-items: center;
  gap: 15px;
}
.adminbar .nav-right .dropdown-toggle:first-child .avatar {
  border-radius: 999px;
}
.adminbar .nav-right .dropdown-toggle:first-child::after {
  display: none;
}
.adminbar .nav-right .dropdown-menu {
  display: none;
}
.adminbar .nav-right .dropdown-menu .sidebar-link {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 0.5rem;
}
.adminbar .nav-right .dropdown-menu.show, .adminbar .nav-right .dropdown.open > .dropdown-menu {
  display: block;
  margin: 0;
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  -o-transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  right: 0;
  left: auto;
  top: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 10px 0;
  background-color: #FFFFFF;
  min-width: 200px;
  position: absolute;
  top: 60px;
  height: auto;
  z-index: 1000;
}
.adminbar .nav-right .dropdown-menu.show .bi, .adminbar .nav-right .dropdown.open > .dropdown-menu .bi {
  font-size: 25px;
  color: #E95149;
  margin-inline: 0.5rem;
}
.adminbar .nav-right .dropdown-menu.show .account, .adminbar .nav-right .dropdown-menu.show .logout, .adminbar .nav-right .dropdown.open > .dropdown-menu .account, .adminbar .nav-right .dropdown.open > .dropdown-menu .logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 1.5rem;
  color: #414B5A;
}
.adminbar .nav-right .dropdown-menu.show .account:hover, .adminbar .nav-right .dropdown-menu.show .logout:hover, .adminbar .nav-right .dropdown.open > .dropdown-menu .account:hover, .adminbar .nav-right .dropdown.open > .dropdown-menu .logout:hover {
  background-color: rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #414B5A;
}
.adminbar .nav-left, .adminbar .nav-right {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  margin-left: 20px;
  position: relative;
}
@media screen and (min-width: 991px) {
  .adminbar {
    width: calc(100% - 280px);
  }
  .adminbar .nav-left {
    display: none;
  }
}

.action-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.action-buttons .btn-action {
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  color: #FFFFFF;
  box-sizing: border-box;
}
.action-buttons .btn-edit, .action-buttons .btn-read, .action-buttons .btn-duplicate, .action-buttons .btn-copy, .action-buttons .btn-copy-shortcode {
  background-color: #0d6efd;
  border: 2px solid #0d6efd;
  color: #FFFFFF;
}
.action-buttons .btn-edit:hover, .action-buttons .btn-edit:focus, .action-buttons .btn-edit:active, .action-buttons .btn-read:hover, .action-buttons .btn-read:focus, .action-buttons .btn-read:active, .action-buttons .btn-duplicate:hover, .action-buttons .btn-duplicate:focus, .action-buttons .btn-duplicate:active, .action-buttons .btn-copy:hover, .action-buttons .btn-copy:focus, .action-buttons .btn-copy:active, .action-buttons .btn-copy-shortcode:hover, .action-buttons .btn-copy-shortcode:focus, .action-buttons .btn-copy-shortcode:active {
  color: #0d6efd;
  background-color: #FFFFFF;
  border: 2px solid #0d6efd;
}
.action-buttons .btn-delete {
  background-color: red;
  border: 2px solid red;
}
.action-buttons .btn-delete:hover, .action-buttons .btn-delete:focus, .action-buttons .btn-delete:active {
  color: red;
  background-color: #FFFFFF;
  border: 2px solid red;
}

.table tbody tr td {
  vertical-align: middle;
}
.table tbody tr td img {
  max-height: 100px;
}

.table tbody tr:hover {
  background-color: rgba(65, 75, 90, 0.3);
  color: #FFFFFF;
}
.table tbody tr:hover td {
  background-color: rgba(65, 75, 90, 0.3);
  color: #FFFFFF;
}

.sort-asc .bi-chevron-down::before {
  transform: rotate(180deg);
}

.role-badge {
  background: rgba(65, 75, 90, 0.3);
  padding: 5px 10px;
  border-radius: 999px;
  display: block;
  margin: 5px;
}

/*** PAGINATION ***/
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.pagination-wrapper .page-numbers {
  padding-inline: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}
.pagination-wrapper .page-numbers .prev, .pagination-wrapper .page-numbers .next {
  gap: 5px;
}
.pagination-wrapper .page-numbers .page-numbers.current {
  font-weight: 700;
  color: #FFFFFF;
  background-color: #E95149;
  border: 1px solid #E95149;
  padding: 5px 10px;
  border-radius: 5px;
}
.pagination-wrapper .page-numbers .page-numbers:not(.current) {
  color: #E95149;
  border: 1px solid #E95149;
  background-color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 5px;
}
.pagination-wrapper .page-numbers .page-numbers:not(.current):hover, .pagination-wrapper .page-numbers .page-numbers:not(.current):focus, .pagination-wrapper .page-numbers .page-numbers:not(.current):active {
  color: #FFFFFF;
  background-color: #E95149;
  border: 1px solid #E95149;
}

/*** WRAPPER RESPONSIVE POUR LES TABLEAUX ***/
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 991px) {
  .table-responsive {
    margin-bottom: 1rem;
  }
}
.table-responsive .table {
  min-width: 600px;
  margin-bottom: 0;
}

/*** ONGLETS PAGE STATISTIQUES ***/
.nav-tabs .nav-link {
  color: #414B5A;
}

#togglePassword {
  background-color: transparent;
  border: none;
  cursor: pointer;
  vertical-align: middle;
}

/***** FORMULAIRE UTILISATEURS *****/
#createUserForm select, #createUserForm input, #createListForm select, #createListForm input, #updateUserForm select, #updateUserForm input {
  margin: 0;
}

#sendTestMailForm input[type=submit] {
  height: fit-content;
}

/***** FORMULAIRES ACF *****/
.acf-form .acf-fields .acf-tab-wrap {
  overflow: hidden;
  background-color: unset;
}
.acf-form select {
  height: 40px;
}
.acf-form input:not([type=submit]) {
  background-color: transparent;
  color: #414B5A;
  margin-block: 0 30px;
}
.acf-form .acf-table {
  overflow-x: auto;
  max-width: 100%;
  display: block;
}
.acf-form .acf-table table {
  min-width: 100%;
  width: max-content;
}
.acf-form .acf-field-table {
  overflow-x: auto;
  max-width: 100%;
}
.acf-form input[type=radio] {
  accent-color: #E95149;
}
.acf-form .acf-button-group {
  display: flex;
  gap: 15px;
}
.acf-form .acf-button-group label.selected {
  background-color: #E95149;
  border: 1px solid #E95149;
  color: #FFFFFF;
}
.acf-form .acf-label {
  margin-bottom: 5px;
}
.acf-form .acf-form-submit {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.acf-form .acf-form-submit .acf-button, .acf-form .acf-form-submit .btn {
  width: 100%;
  margin: 0;
}
.acf-form .hide-if-value p {
  display: flex;
  gap: 25px;
  align-items: center;
}
.acf-form .acf-repeater .acf-actions .acf-button {
  margin-bottom: 16px;
}
.acf-form input[type=file] {
  border: none;
}
.acf-form input[type=file]::file-selector-button {
  border: none;
  background: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  padding: 5px 10px;
  transition: 0.3s;
  border-radius: 999px;
  background: #E95149;
  color: white;
  border: 1px solid #E95149;
}
.acf-form input[type=file]::file-selector-button:hover, .acf-form input[type=file]::file-selector-button:focus, .acf-form input[type=file]::file-selector-button:active {
  background: transparent;
  color: #E95149;
  border: 1px solid #E95149;
  transition: 0.3s;
}
.acf-form .hide-if-value p .acf-button, .acf-form .acf-repeater .acf-actions .acf-button {
  appearance: none;
  -webkit-appearance: none;
  -moz-webkit-appearance: none;
  border: none;
  background: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  padding: 5px 10px;
  transition: 0.3s;
  border-radius: 999px;
  background: #E95149;
  color: white;
  border: 1px solid #E95149;
}
.acf-form .hide-if-value p .acf-button:hover, .acf-form .hide-if-value p .acf-button:focus, .acf-form .hide-if-value p .acf-button:active, .acf-form .acf-repeater .acf-actions .acf-button:hover, .acf-form .acf-repeater .acf-actions .acf-button:focus, .acf-form .acf-repeater .acf-actions .acf-button:active {
  background: transparent;
  color: #E95149;
  border: 1px solid #E95149;
  transition: 0.3s;
}
.acf-form .acf-field-68ff5015a6e4d {
  display: none;
}
.acf-form .wp-picker-container button {
  border: none;
}
.acf-form .wp-picker-container button .wp-color-result-text {
  background-color: white;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.02em;
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width: 575px) {
  .acf-form .acf-form-submit {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .acf-form .acf-form-submit .acf-button, .acf-form .acf-form-submit .btn {
    width: auto;
  }
}

.card__button {
  width: 100%;
}
.card .select2-container--bootstrap-5 {
  width: unset !important;
}
@media screen and (min-width: 575px) {
  .card__button {
    width: auto;
  }
}

/*** Filtre de recherche des désabonnés (statistiques) ***/
#desabonnes-filter-form .btn-primary {
  background: #0d6efd;
  border: 1px solid #0d6efd;
}
#desabonnes-filter-form .btn-primary:hover, #desabonnes-filter-form .btn-primary:focus, #desabonnes-filter-form .btn-primary:active {
  border: 1px solid #0d6efd;
  background: transparent;
  color: #0d6efd;
}
#desabonnes-filter-form .btn-secondary {
  background: #6c757d;
  border: 1px solid #6c757d;
}
#desabonnes-filter-form .btn-secondary:hover, #desabonnes-filter-form .btn-secondary:focus, #desabonnes-filter-form .btn-secondary:active {
  border: 1px solid #6c757d;
  background: transparent;
  color: #6c757d;
}
#desabonnes-filter-form input[name=s_email] {
  height: auto;
}

.create-post {
  padding: 1rem;
}
.create-post__links {
  gap: 1rem;
}
.create-post__link {
  margin: 0;
  width: 100%;
  padding: 0;
  height: 200px;
  border: 2px solid #E95149;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  background-color: #E95149;
  border: 1px solid #E95149;
  color: #FFFFFF;
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}
.create-post__link .bi {
  font-size: clamp(1.5rem, 1.25rem + 0.43vw, 2rem);
}
.create-post__link:hover, .create-post__link:focus, .create-post__link:active {
  background-color: transparent;
  color: #E95149;
  border: 1px solid #E95149;
}
@media screen and (min-width: 991px) {
  .create-post__link {
    margin: 1rem;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 991px) {
  .create-post__links {
    gap: 0;
  }
  .create-post__link {
    width: auto;
  }
}

html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  word-wrap: break-word;
}

.page-container {
  min-height: 100vh;
  padding-left: 280px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 991px) {
  .page-container {
    padding-left: 0;
  }
}

.main-content, #mainContent {
  margin: 0;
  padding: 0;
  max-width: 100%;
  height: 100vh;
  margin-top: 100px;
}

a {
  text-decoration: none;
  color: #414B5A;
}

/*# sourceMappingURL=main.css.map */
