/* Add your Common CSS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}
p {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 153.846%;
}
:root {
  --primary-color: #7367f0;
  --second-color: #e0e0e0;
}

.mb20 {
  margin-bottom: 20px !important;
}
a:focus {
  box-shadow: none;
}
section {
  margin-right: 30px;
  overflow: hidden;
}
.heading-one {
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}
.heading-two {
  color: #000;
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}

/* modal css */

.pre-view-modal .custom-modal-width.modal-dialog {
  max-width: 1190px;
  width: auto;
}

.pre-view-modal .modal-content {
  border-radius: 20px;
  border: 1px solid #f9f9f9;
  background: var(--primary-color);
}
.pre-view-modal .modal-body {
  padding: 40px 40px 30px;
}

.pre-view-modal .heading-one {
  color: #fff;
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 18px;
}
.pre-view-modal p {
  color: #fff;
  font-family: "Inter";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 166.667%;
  margin-bottom: 0;
}
.pre-view-modal .main p a {
  color: #fff;
  font-family: "Inter";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 166.667%;
  text-decoration-line: underline;
}

.pre-view-modal .mybutton .btn {
  text-align: center;
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 178px;
  height: 50px;
  max-width: 100%;
  color: #fff;
}
.pre-view-modal .mybutton .btn.bluebtn {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid #fff;
}
.pre-view-modal .mybutton .btn.whitebtn {
  background: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.pre-view-modal .dropdown .btn-secondary {
  border-radius: 8px;
  background: rgb(255 255 255 / 10%);
  border: 0;
}

.pre-view-modal .mybutton {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
  gap: 24px;
}
.pre-view-modal .dropdown-item.active,
.pre-view-modal .dropdown-item:active {
  text-decoration: none;
  background-color: var(--primary-color);
  color: #fff;
}

.pre-view-modal .dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2273 9.27069H11.7775H7.77052C7.08483 9.27069 6.74199 10.0992 7.22768 10.5849L10.9275 14.2847C11.5203 14.8776 12.4846 14.8776 13.0774 14.2847L14.4845 12.8777L16.7772 10.5849C17.2558 10.0992 16.9129 9.27069 16.2273 9.27069Z" fill="white"/></svg>');
  background-size: contain;
  color: #fff;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 5px;
  border: 0;
}
/* button.notice-dismiss {
  padding: 5px;
} */
.wp-core-ui .notice.is-dismissible{margin-top: 30px;}
.wp-core-ui .notice.is-dismissible h5{margin: 15px 0;}
button.notice-dismiss {
  padding: 0;
  margin: 15px 20px;
}
#wpfooter{
  position: relative;
}
/* media css */

@media screen and (max-width: 991px) {
  section {
    margin-right: 20px;
  }
}

@media screen and (max-width: 782px) {
  section {
    margin-right: 10px;
  }
  .pre-view-modal .modal-body {
    padding: 20px;
  }
  .pre-view-modal .mybutton {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    gap: 20px;
    flex-direction: column;
    /* width: 100%; */
  }
  .pre-view-modal .mybutton .btn {
    width: 100%;
  }
  .pre-view-modal .dropdown-menu.show {
    display: block;
    width: 100%;
  }
}

