@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/cairo/Cairo-Bold.woff2") format("woff2"), url("../../fonts/cairo/Cairo-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/cairo/Cairo-SemiBold.woff2") format("woff2"), url("../../fonts/cairo/Cairo-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/cairo/Cairo-ExtraLight.woff2") format("woff2"), url("../../fonts/cairo/Cairo-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/cairo/Cairo-Light.woff2") format("woff2"), url("../../fonts/cairo/Cairo-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/cairo/Cairo-Black.woff2") format("woff2"), url("../../fonts/cairo/Cairo-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Cairo";
  src: url("../../fonts/cairo/Cairo-Regular.woff2") format("woff2"), url("../../fonts/cairo/Cairo-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  		This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  		calculation of the height of the owl-item that breaks page layouts
  	 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

* {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

ul {
  list-style: none;
}

ol,
ul,
h1,
h2,
h3,
h5,
h4,
h6 {
  margin: 0;
  padding: 0;
}

a {
  /*text-decoration: none !important;*/
}

body {
  background-color: #f5f1f1;
  direction: rtl;
  text-align: right;
}

.login-nav {
  text-align: center;
  padding: 30px 0;
  background: rgb(68, 119, 107);
  background: linear-gradient(180deg, rgb(68, 119, 107) 0%, rgb(22, 81, 82) 100%);
}
.login-nav img {
  width: 250px;
}

.body-login {
  display: flex;
  align-items: center;
  justify-content: center;
}
.body-login .form-login {
  width: 400px;
}

/*.new-form input {*/
/*  padding: 0 10px;*/
/*  display: block;*/
/*  height: 60px;*/
/*  width: 100%;*/
/*  border: 0;*/
/*  color: #44776b;*/
/*}*/
/*.new-form input:focus {*/
/*  outline: 0;*/
/*}*/

/*.f-top input {*/
/*  border-radius: 15px 15px 0 0;*/
/*  border: 1px solid #44776b;*/
/*  border-bottom: 1px solid #bec7c8;*/
/*}*/

/*.f-bottom input {*/
/*  border: 1px solid #44776b;*/
/*  border-top: 0;*/
/*  border-radius: 0 0 15px 15px;*/
/*}*/

.remeber-me {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.remeber-me a {
  color: #44776b;
  text-decoration: underline !important;
}
.remeber-me label {
  display: flex;
  align-items: center;
}
.remeber-me label input {
  width: 18px;
  height: 18px;
  accent-color: #44776b;
  margin-inline-end: 8px;
}
.remeber-me label span {
  color: #44776b;
}

.login-btn {
  display: block;
  width: 100%;
  background-color: #44776b;
  padding: 15px;
  color: #fff;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.new-so {
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: center;
}
.new-so li {
  margin-inline-end: 20px;
}
.new-so li a img {
  width: 25px;
}

.validation-m {
  margin-bottom: 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  background-color: #ff6565;
  border-radius: 10px;
}
.validation-m img {
  margin-inline-end: 10px;
}
.validation-m span {
  color: #fff;
}

.modal-login {
  border-radius: 15px !important;
  padding: 1rem;
}
.modal-login .close {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #44776b;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  opacity: 1;
}
.modal-login .close span {
  color: #fff;
  margin-top: -5px;
}
.modal-login .modal-header {
  padding: 10px;
  display: flex;
  border-bottom: 0;
  align-items: center;
  justify-content: space-between;
}
.modal-login .modal-header button {
  margin-left: 0;
}
.modal-login .modal-header a img {
  width: 33px;
}
.modal-login h3 {
  color: #44776b;
  margin-bottom: 15px;
  font-size: 18px;
}
.modal-login p {
  color: #44776b;
  margin-bottom: 20px;
  font-size: 15px;
}

.pop-input {
  margin-bottom: 20px;
}
.pop-input input {
  padding: 0 10px;
  display: block;
  height: 50px;
  width: 100%;
  border: 1px solid #44776b;
  color: #44776b;
  border-radius: 5px;
}
.pop-input input:focus {
  outline: 0;
}

.body-container {
  display: flex;
  min-height: 100vh;
}


.body-menu > * {
  transition: all 0.8s;
}

.body-menu.dog {
  width: 9.625rem;
}
.body-menu.dog .logo-r .icon {
    display: block;
}
.body-menu.dog .logo-r .main {
    display: none;
}
.body-menu.dog ul li a {
    display: block;
    text-align: center;
}
.body-menu.dog ul li a span {
    display: none;
}
.body-menu.dog ul li a img {
    margin: 0 auto;
    display: inline-block;
}
.body-menu .logo-r .main {
    display: block;
    margin: 0 auto;
}
.body-menu .logo-r .icon {
    display: none;
}
.body-menu .open-menu .angle-right {
    display: block;
}
.body-menu .open-menu .angle-left {
    display: none;
}

.body-menu.dog .open-menu .angle-left {
    display: block;
}

.body-menu.dog .open-menu .angle-right {
    display: none;
}


.body-menu.dog ul {
  margin-top: 150px;
  padding-inline-start: 10px;
}
.body-menu.dog ul li a span {
  opacity: 0;
  overflow: hidden;
}
.body-menu ul {
  margin-top: 150px;
  padding-inline-start: 50px;
  display: flex;
  flex-direction: column;
}
.body-menu ul li {
  margin-bottom: 25px;
}
.body-menu ul li a {
  display: flex;
  align-items: center;
}
.body-menu ul li a img {
  margin-inline-end: 10px;
  width: 2.074rem;
  transition: all 0.8s;
}
.body-menu ul li a span {
  color: #fff;
    font-size: 22pt;
}
.body-menu ul li a:hover img {
  scale: 1.2;
}



.open-menu {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  left: -20px;
}
.open-menu img {
  width: 10px;
}

.body-container-info {
  min-height: 100vh;
  padding: 30px 30px 0px 30px;
  flex: 1;
}

.ark-box {
  background-color: #44776B;
  padding: 40px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.ark-box {
  display: flex;
  justify-content: space-between;
}
.ark-box h2 {
  color: #fff;
  font-size: 20px;
}
.ark-box span {
  color: #fff;
}

.nav-profile {
  display: flex;
  justify-content: space-between;
}

.np-persone {
  position: relative;
    width: 15.625rem;
}

.np-persone-profile {
  display: flex;
  align-items: center;
    justify-content: space-between;
  cursor: pointer;
}

.np-persone-profile .item-arrow {
  width: 16px;
  transition: all 0.5s;
}
.np-persone-profile .arrow-c {
  rotate: 180deg;
}

.np-persone-profile .n-name {
  color: #44776B;
  margin: 0 10px;
  font-size: 15px;
}


.np-persone-body ul li {
  margin-bottom: 0.9rem;
}

.np-persone-body ul > li:last-child {
    margin-bottom: 0;
}

.np-persone-body ul li a {
  display: flex;
  align-items: center;
    text-decoration: none !important;
}
.np-persone-body ul li a img {
  margin-inline-end: 10px;
}
.np-persone-body ul li a span {
  font-size: 14px;
  color: #fff;
}

.h-body {
  height: calc(100% - 40px);
}

.h-footer {
  display: flex;
}
.h-footer h5 {
  font-size: 12px;
  color: #949494;
}
.h-footer h5 a {
  color: #44776B;
  text-decoration: underline !important;
}

.top-filter {
  width: 300px;
  height: 40px;
  display: flex;
  margin-inline-end: 20px;
  background-color: #fff;
}
.top-filter input {
  height: 40px;
  border: 0;
  flex: 1;
  display: block;
  padding: 0 10px;
}
.top-filter input::-moz-placeholder {
  font-size: 12px;
}
.top-filter input::placeholder {
  font-size: 12px;
}
.top-filter button {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-filter button:focus {
  outline: 0;
  border: 0;
}

.select select {
  width: 180px;
  height: 40px;
  margin-inline-end: 20px;
  background-color: #44776B;
  color: #fff;
  padding: 0 10px;
  font-size: 14px;
}
.filter-head {
  display: flex;
}

.sec-title {
  margin-bottom: 40px;
}
.sec-title h5 {
  color: #44776B;
  font-weight: 400;
}

.ft-select {
  display: flex;
  align-items: center;
}
.ft-select label {
  margin-inline-end: 20px;
  font-size: 14px;
  color: #44776B;
}
.ft-select .select1 select {
  border-radius: 5px;
  color: #44776B;
  padding: 0 10px;
  border: 0;
  height: 40px;
  width: 70px;
}

.filter-table {
  display: flex;
  justify-content: space-between;
}

.list-action-tabel ul {
  display: flex;
  align-items: center;
}
.list-action-tabel ul li {
  margin-inline-end: 10px;
}
.list-action-tabel ul li a > img {
  width: 30px;
}

.r-plus {
  display: flex;
  align-items: baseline;
  border-radius: 20px;
  padding: 6px 20px;
  background-color: #44776B;
}
.r-plus span {
  margin-inline-end: 10px;
  color: #fff;
}
.r-plus img {
  width: 13px !important;
}

.table-arkan {
  margin-bottom: 40px;
}

/*.active {*/
/*  background: #8AEA8A;*/
/*  display: inline-block;*/
/*  color: #fff;*/
/*  border-radius: 25px;*/
/*  padding: 7px 15px;*/
/*  font-size: 13px;*/
/*}*/
.active.red {
  background: #F98989;
}
.active.blue {
  background-color: #8ABDEA;
}

.table-arkan {
  margin-top: 20px;
}
.table-arkan thead tr th {
  background-color: #44776B;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
    padding: 1rem;
}
.table-arkan thead tr th:first-child {
  border-radius: 0 10px 10px 0;
}
.table-arkan thead tr th:last-child {
  border-radius: 10px 0 0 10px;
}

.table-arkan thead tr th:only-child {
    border-radius: 10px 10px 10px 10px;
}

.table-arkan td {
  background-color: #fff;
  color: #44776B;
  font-size: 14px;
}

.table-arkan-action a img {
  width: 25px;
}

.table-arkan-action a img {
    width: 25px;
}

.arkan-upload label {
  display: flex;
  padding: 40px;
  border: 1px dashed #44776B;
  border-radius: 15px;
  width: 100%;
  margin-bottom: 20px;
}
.arkan-upload label span {
  flex: 1;
  color: #44776B;
}
.arkan-upload label a {
  display: inline-block;
  background: #44776B;
  color: #fff;
  padding: 7px 20px;
  border-radius: 25px;
  font-size: 14px;
}
.arkan-upload input {
  display: none;
}

.pop-check {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.pop-check input {
  margin-inline-end: 10px;
  width: 17px;
  height: 17px;
  accent-color: #44776B;
}

.file-btn {
  display: flex;
  justify-content: center;
}
.file-btn a {
  display: inline-block;
  border: 1px solid #44776B;
  color: #44776B;
  padding: 7px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-inline-end: 20px;
}
.file-btn a.active {
  background-color: #44776B;
  color: #fff;
}

.center-text {
  text-align: center;
}

.progs {
  display: flex;
  margin: 20px 0;
}
.progs h6 {
  font-weight: 400;
  color: #44776B;
}
.progs .progs-bar {
  flex: 1;
  padding: 5px;
  height: 20px;
  border: 1px solid #44776B;
  margin-inline-end: 10px;
  border-radius: 20px;
}
.progs .progs-bar span {
  display: block;
  height: 100%;
  background-color: #44776B;
  border-radius: 10px;
}

.copy-link {
  text-align: center;
  margin-bottom: 20px;
}
.copy-link > span {
  display: block;
  margin-bottom: 10px;
}

.cl-body {
  align-items: center;
  display: flex;
  padding: 10px;
  border-radius: 35px;
  border: 1px solid #44776B;
}
.cl-body > span {
  flex: 1;
}
.cl-body a {
  padding: 5px 15px;
  background: #44776B;
  border-radius: 20px;
}
.cl-body a > span {
  color: #fff;
}

.form-arkan {
  margin-bottom: 20px;
}
.form-arkan label {
  color: #44776B;
}
.form-arkan input,
.form-arkan select {
  width: 100%;
  display: block;
  height: 45px;
  border: 0;
  background-color: #fff;
  border-radius: 5px;
  padding: 0 10px;
}
.form-arkan input::-moz-placeholder, .form-arkan select::-moz-placeholder {
  color: #BDCFCB;
  font-size: 14px;
}
.form-arkan input::placeholder,
.form-arkan select::placeholder {
  color: #BDCFCB;
  font-size: 14px;
}

.button-sub {
  justify-content: start;
}
.button-sub a,
.button-sub button {
  min-width: 100px;
  text-align: center;
  padding: 10px 20px;
}
.button-sub a.done,
.button-sub button.done {
  background-color: #F5F1F1;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 0;
}

.select2-container .select2-selection--multiple {
  min-height: 45px !important;
  border: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 10px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  height: 32px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #C2EFE4 !important;
  color: #44776B !important;
  font-size: 14px !important;
  border: 0 !important;
  height: 27px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border-right: 0 !important;
  padding-top: 2px !important;
  color: #44776B !important;
}

.flex-foot {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.select-q select {
  background-color: #F5F1F1;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 0;
  display: inline-block;
  padding: 7px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-inline-end: 20px;
}

.exampage {
  padding: 20px 0;
  background: linear-gradient(180deg, rgb(68, 119, 107) 0%, rgb(22, 81, 82) 100%);
}
.exampage .filter-head {
  flex: 1;
  display: flex;
  align-items: center;
}
.exampage .filter-head .ex-logo {
  display: flex;
  align-items: center;
}
.exampage .filter-head img {
  margin-inline-end: 20px;
  height: 30px;
}
.exampage .filter-head h4 {
  color: #fff;
  font-size: 16px;
  border-inline-start: 6px solid #fff;
  padding-inline-start: 15px;
}

.ex-timer {
  display: flex;
  align-items: center;
}
.ex-timer.time-end label {
  color: #FF6565;
}
.ex-timer.time-end span {
  background-color: #FF6565;
  color: #fff;
}
.ex-timer label {
  margin-inline-end: 20px;
  color: #fff;
}
.ex-timer div {
  display: flex;
}
.ex-timer div span {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 4px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 10px;
}

.body-qus {
  min-height: 450px;
}
.body-qus h4 {
  color: #042A2B;
  margin-bottom: 30px;
}

.qus-form label {
  padding: 10px;
  display: inline-flex;
  align-items: end;
  border-radius: 20px;
}
.qus-form label.wrong {
  background-color: #FFC6C6;
}
.qus-form label.corect {
  background-color: #E4FFEC;
}
.qus-form label input {
  margin-inline-end: 10px;
  width: 17px;
  height: 17px;
  display: block;
}
.qus-form label span {
  font-size: 14px;
  font-weight: 600;
  color: #042A2B;
}

.modal-scss {
  text-align: center;
  margin-bottom: 20px;
}
.modal-scss img {
  width: 300px;
}
.modal-scss p {
  text-align: center;
}
.modal-scss span {
  color: #44776B;
}

/*end genral*/
@media (min-width: 1200px) {
  .container {
    max-width: 1250px;
  }
}
/*@media (max-width: 1200px) {*/
/*  .table table {*/
/*    min-width: 1200px;*/
/*  }*/
/*}*/
@media (max-width: 991px) {
  .exampage {
    padding: 10px;
  }
  .exampage .nav-profile {
    flex-direction: column;
  }
  .exampage .nav-profile > div {
    flex: 1;
    margin-bottom: 20px;
  }
  .ex-logo img {
    display: none;
  }
  .filter-head .select,
  .filter-head .top-filter {
    display: none;
  }
  .form-login {
    padding: 0 20px;
  }
  .body-menu {
    position: fixed;
    width: 100%;
    z-index: 5;
  }
  .body-menu .open-menu {
    left: 50%;
    transform: translateY(-50%);
    top: auto;
    bottom: 10%;
  }
  .body-menu.dog {
    right: -100px;
  }
  .body-menu.dog .open-menu {
    left: -50%;
    rotate: 180deg;
  }
}/*# sourceMappingURL=style.css.map */
