@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;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@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;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sofadi+One&display=swap');


@font-face {
    font-family: 'Avantt';
    src: url('./Avantt/Avantt-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Avantt';
    src: url('./Avantt/Avantt-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Avantt';
    src: url('./Avantt/Avantt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Avantt';
    src: url('./Avantt/Avantt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Avantt';
    src: url('./Avantt/Avantt-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Avantt';
    src: url('./Avantt/Avantt-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Avantt';
    src: url('./Avantt/Avantt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Avantt';
    src: url('./Avantt/Avantt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }

*{box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;}
html{
  scroll-behavior: smooth;
}
body{
    font-family: Avantt, Arial, sans-serif;
    background: linear-gradient(315deg, #f0f0f0, #fff);
    --slide-h: calc(100vw * 0.22);
}
.main-slider{height: var(--slide-h); overflow: hidden;}
.main-slider > *{opacity: 0;}
.main-slider.slick-initialized.slick-slider > *{opacity: 1;}
.main-slider .slide, .welcome.full.out{height: var(--slide-h);}
header{
    box-shadow: 0px 2px 15px #3333;
}
.main-slider h1{font-size: 3.75rem; font-weight: 500;}
.main-slider .slick-arrow {
    position: absolute;
    z-index: 10;
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    background: #0006;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding-top: 3px;
    color: #fff;
    text-shadow: 1px 1px 3px #3333;
    cursor: pointer;
    transition: all 0.3s;
}
.main-slider .slick-arrow.prev {left: 20px}
.main-slider .slick-arrow.next {right: 20px}
.main-slider .slide{
    height: 300px;
    background-color: #f0f0f0;
}
.banner-img{height: 260px; width: 100%; object-fit: contain;}
.main-slider .slide .ai-logo{max-width: 100%; height: 30px; margin-bottom: 20px;}
.main-slider .slide p{font-size: 1.6rem;}

.table-box, .box{
    border-radius: 15px;
    background: #fff linear-gradient(145deg, #f7f7f7, #ffffff);
    box-shadow: 5px 5px 20px #e3e3e3, -5px -5px 40px #ffffff;
    padding: 30px;
    margin: 20px 0;
    position: relative;
    transition: all 0.3s;
    border: 1px solid #ddd;
}
.box:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00f2ff, #cb00ff);
    border-radius: 15px;
    left: 0;
    top: 0;
    transition: all 0.3s;
}
.box:hover{background: #fff;}
.box:hover:before {
    transform: scale(1.02, 1.04) rotate(-3deg);
    box-shadow: -3px 3px 20px 0px #77eff8, 3px -3px 20px #dc76f9;
    border-radius: 10px;
}
.box .ai-logo {
    height: 20px;
    margin-bottom: 20px;
}
.box p {
    font-size: 1.2rem;
}
.box-content{height: 150px; overflow: hidden;}
a{text-decoration: none;}

.box:hover a > .anim-right{display: inline-block; animation: flow-right 1s infinite ease-in-out;}

@keyframes flow-right {
    0%{transform: translateX(-5px);}
    100%{transform: translateX(5px);}
}
.main-footer{
    background: #1e1a17;
    line-height: 50px;
    margin-top: 30px;
}
.main-footer.fixed{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

/* MODAL */
.prModal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  opacity: 0; 
  pointer-events: none;
}
.prModal.page-view .modal-bg{ display: none; }
.prModal .pr-modal-body{
  min-width: 60%;
  max-width: 100%;
  width: 60%;
  max-height: 100vh;
  overflow: auto;
  padding: 30px;
  background: linear-gradient(150grad, #f9f9f9, #fff);
  box-shadow: 5px 5px 20px #0003;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s;
  transform: scale(0.6);
}
.prModal .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0002;
  z-index: -1;
}
.prModal .close-modal {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 34px;
  display: inline-block;
  line-height: 30px;
  width: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.prModal .close-modal:hover {transform: rotate(360deg); color: #c00}

.prModal.open{opacity: 1; pointer-events: all;}
.prModal.open .pr-modal-body{transform: scale(1);}

.pr-modal-body h1 {
  font-size: 32px;
  margin-bottom: 30px;
}
.pr-modal-body p {
  font-size: 20px;
  margin-bottom: 20px;
}

.prModal.page-view { top: 70px; bottom: 50px;}
.prModal.page-view .pr-modal-body{
  box-shadow: none;
  border-radius: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  padding: 0;
  font-size: 20px;
}
.page-body ul,
.prModal.page-view .pr-modal-body ul{
  list-style: none;
  padding: 0;
}
.page-body ul li,
.prModal.page-view .pr-modal-body ul li{
  border-bottom: 1px dashed #ddd;
  padding: 5px;
  font-size: 16px;
}
.page-body ul strong,
.prModal.page-view .pr-modal-body ul strong{
  font-weight: 400;
  color: #fa8900;
  display: block;
  font-size: 20px;
}
.page-body .intro,
.prModal.page-view .pr-modal-body .intro{
  background: linear-gradient(346deg, #ffe89e, #fdff9b);
  padding: 50px 0;
  text-shadow: 1px 1px 1px #fff;
  background: repeating-linear-gradient(45deg, #ffebce, #ffe5c7 100px);
}
.prModal.page-view .pr-modal-body .how-it-works{

}
.you-vid{width: 100%; height: auto; aspect-ratio: 16 / 9; pointer-events: none;}
.table-box h2 {
  margin-bottom: 20px;
  text-shadow: 2px 2px 2px #0003, -2px -2px 2px #fff;
}
.no-scroll{overflow: hidden;}
.neo-box{
  background: linear-gradient(315deg, #ffffff, #f6f6f6);
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  box-shadow: -5px -5px 5px #fff, 5px 5px 5px #3332;
}
.bordered-box{
  border: 1px solid #ddd;
  border-radius: 15px;
}

.btn.btn-priya{
  background: linear-gradient(310deg, #2a377e, #1e2c77);
  box-shadow: 0px 0px 10px #2a377e88, -2px -2px 2px #fff, 1px 2px 2px #c9c9c9;
  border: none;
  border-radius: 18px;
  color: #fff;
  transition: all 0.3s;
}
.btn.btn-priya:hover{
  background: linear-gradient(310deg, #ff731c, #d85300);
  box-shadow: 0px 0px 10px #fe6e167a, -2px -2px 2px #fff, 1px 2px 2px #c9c9c9;
}
.btn.btn-priya-outline{
   background: #fff;
    border: 2px solid #ddd;
    border-radius: 18px;
    color: #2a377e;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}
.btn.btn-priya-outline:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(310deg, #ff731c, #d85300);
  box-shadow: 0px 0px 10px #fe6e167a, -2px -2px 2px #fff, 1px 2px 2px #c9c9c9;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
}
.btn.btn-priya-outline:hover{
  background: transparent;
  box-shadow: 0px 0px 10px #fe6e167a, -2px -2px 2px #fff, 1px 2px 2px #c9c9c9;
  color: #fff;
}
.btn.btn-priya-outline:hover:before{transform: scale(1); opacity: 1;}
.uni-login:before{
  content: '\1F512';
  transition: all 0.3s;
}
.uni-login:hover:before{
  content: '\1F513';
}
.width-box{width: 350px; margin: 60px auto 30px;}
.width-box > h4 {
  font-size: 28px;
  font-weight: 700;
  text-shadow: -2px -2px 1px #fff, 2px 2px 5px #dbdbdb;
  color: #cbcbcb;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
}
.login-box { padding: 30px; }
.login-box .link{ font-size: 14px; text-decoration: underline; }


.main-slider .slide{position: relative;}
.main-slider .slide .welcome{position: absolute; height: 100%;}
.welcome{
position: fixed;
z-index: 100;
left: 0; top: 0; right: 0;
height: 100vh;
transition: all 1s;
}
.welcome.out h1{ animation: zoom-out 1s;}
.welcome.full.out{top: 70px; height: 300px;}

.welcome .text-wrap{
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.welcome video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* animation: zoom-out 10s linear infinite; */
  position: absolute;
  left: 0;
  top: 0;
}
.welcome h1{animation: zoom-in 6s linear forwards; text-align: center;}

.robotic [data-shadow] {
display: flex;
color: white;
font-size: 4em;
text-shadow: .03em .03em 0 rgb(19, 19, 19);
/* position: absolute; */
width: 100%;
height: 100%;
padding: 0 30%;
align-items: center;
justify-content: center;
font-weight: 700;
}
.robotic [data-shadow]:after {
    content: attr(data-shadow);
    position: absolute;
    z-index: 0;
    text-shadow: none;
    background-image:
     linear-gradient(
        45deg,
        transparent 45%,
        #fff 45%,
        #fff 55%,
        transparent 0
        );
    background-size: .05em .05em;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shad-anim 15s linear infinite;
    transform: translate(5px, 5px);
    padding: 0 30%;
}
.robotic [data-shadow]:before {
content: attr(data-shadow);
position: relative;
z-index: 1;
}

@keyframes shad-anim {
0% {background-position: 0 0}
0% {background-position: 100% -100%}
}
@keyframes zoom-out {
0% {transform: scale(1.5);}
100% {transform: scale(1);}
}
@keyframes zoom-in {
0% {transform: scale(0.1); opacity: 0;}
20% {opacity: 1;}
100% {transform: scale(2);}
}

.font-16{font-size: 16px !important;}

.pr-ai-tabs > li > .pr-tab-heading{
  cursor: pointer; transition: all 0.3s;
  background: linear-gradient(45deg, #6b1ad1, #aa1233);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pr-ai-tabs > li > .pr-tab-heading:hover{
    transform: scale(1.05) translateX(10px);
    display: inline-block;
    transition: all 0.6s;
}
.pr-ai-tabs > li > .pr-tab-content{display: none;}

.tab-btns {
  display: flex;
  gap: 2px;
  padding: 0 20px;
  border-bottom: 1px solid #bbb;
}
.tab-btns a {
  display: block;
  padding: 5px 22px;
  border-radius: 10px 10px 0 0;
  box-shadow: 0px -2px 2px #d1264166;
  background: linear-gradient(360deg, #f9f9f9, #f6f6f6);
  padding: 0 20px;
  transition: all 0.3s;
  font-size: 20px;
  color: #ae1c3c;
}
.tab-btns a:not(.active):hover {box-shadow: 0px -2px 10px #d1264166; transform: scale(1.1);}
.tab-btns a.active {
  background: linear-gradient(360deg, #ac1838, #e3768e);
  color: #fff;
}

.biframes .frame-view{
  border-radius: 5px; 
  overflow: hidden; 
  border: 3px solid #733b7b;
}
.biframes .frame-view iframe {
  border: 0;
  width: 100%;
  height: 400px;
  margin-bottom: -70px;
}

.make-full.full:before{display: none;}
.make-full.full {
  position: fixed;
  top: 10px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  box-shadow: 0px 0px 30px #3333;
}
.make-full > i {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #ccc;
  transition: all 0.3s;
}
.make-full > i:hover {color:#888; transform: scale(1.1);}
.biframes .make-full.full .frame-view iframe{height: calc(100vh - 100px);}

.make-full.full > .priya-window-maximize:before{content: "\f2d2";}

.form-loader{position: absolute; width: 100%; height: 100%; z-index: 10; display: flex; align-items: center; justify-content: center; background-color: #fffd; opacity: 0; pointer-events: none; transition: all 0.3s;}
.form-loader.in{opacity: 1; pointer-events: all;}
.btn.btn-primary {
    background: linear-gradient(0deg, #d32642, #aa2036);
    border: none;
}
.loader {
  color: #777;
  font-size: 45px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  transform: translateZ(0);
  animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes mltShdSpin {
0% {
  box-shadow: 0 -0.83em 0 -0.4em,
  0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
  0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
}
5%,
95% {
  box-shadow: 0 -0.83em 0 -0.4em, 
  0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 
  0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
}
10%,
59% {
  box-shadow: 0 -0.83em 0 -0.4em, 
  -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, 
  -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
}
20% {
  box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
  -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, 
  -0.749em -0.34em 0 -0.477em;
}
38% {
  box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
  -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, 
  -0.82em -0.09em 0 -0.477em;
}
100% {
  box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 
  0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
}
}

@keyframes round {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg) }
}
.home-bdy{
  min-height: calc(100vh - 474px);
}
.home-box-div .card{
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.home-box-div .card:before, .home-box-div .card:after{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 25px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: rgb(0 0 0 / 30%);
  -webkit-box-shadow: 0 35px 20px rgb(0 0 0 / 30%);
  -moz-box-shadow: 0 35px 20px rgb(0 0 0 / 30%);
  box-shadow: 0 35px 20px rgb(0 0 0 / 30%);
  -webkit-transform: rotate(-8deg);
  -moz-transform: rotate(-8deg);
  -o-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  transform: rotate(-8deg);
}
.home-box-div .card:after{
  -webkit-transform: rotate(8deg);
  -moz-transform: rotate(8deg);
  -o-transform: rotate(8deg);
  -ms-transform: rotate(8deg);
  transform: rotate(8deg);
  right: 10px;
  left: auto;
}
.home-box-div .card a{
  color: #333; 
}
.home-box-div .card .img{
  overflow: hidden;
}
.home-box-div .card .img img{
  width: 100%;
  height: 220px;
  object-fit: contain;
}
.home-box-div .card h4{
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgb(0 0 0 / 10%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.home-box-div .col-md-4:nth-child(1) .card h4{
  background: linear-gradient(45deg, #7f2fc5, #299eb8);
}
.home-box-div .col-md-4:nth-child(2) .card h4{
  background: linear-gradient(45deg, #333333, #d5941c);
}
.home-box-div .col-md-4:nth-child(3) .card h4{
  background: linear-gradient(45deg, #2a2099, #3c9ee3);
}
.home-box-div .col-md-4:nth-child(4) .card h4{
  background: linear-gradient(45deg, #2a2099, #3c9ee3);
}

.anchor-btn .btn{
  font-weight: 600;
  font-size: 20px;
  background: transparent;
  color: #333;
  border: solid 2px #ab2036;
}
.anchor-btn .btn:hover{
  color: #fff;
  background: linear-gradient(0deg, #d32642, #aa2036);
}


.button-none,.button-none:active,.button-none:hover,.button-none:focus{border:0;outline:0;background-color:transparent;}
.theme-btn-white{background-color: #fff; width: 50px; height: 40px; border: 1px solid #777;}
.theme-btn-white:hover{background-color:#555;color:#fff;}
.icon-bg{position:relative;display:inline-block;text-align:center;vertical-align:middle;transition:all 0.4s;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;}
.icon-bg-md{width:50px;height:50px;line-height:50px;font-size:25px;}
.icon-bg-md:before{font-size:25px;}
.icon-bg-lg{width:70px;height:70px;line-height:70px;font-size:35px;}
.icon-bg-lg:before{font-size:35px;}
.about-us-item{padding-bottom:30px;}
.about-us-img{position:relative;}
.about-us-img-one:before{content:"";position:absolute;top:-30px;left:-30px;width:100%;height:100%;background-image:url("https://www.makemyreport.com/assets/images/about-img-1-before.png");background-repeat:no-repeat;opacity:.3;z-index:-1;}
.about-us-img img{width:100%;}
.pulse .pulse-button{position:absolute;top:35px;right:35px;z-index:9;padding:0px;}
.pulse .pulse-button:before{content:"";position:absolute;left:0;right:0;top:0;bottom:0;animation:pulse_animation 2s infinite;-webkit-animation:pulse_animation 2s infinite;-moz-animation:pulse_animation 2s infinite;z-index:-1;}
.pulse .pulse-button:after{content:"";position:absolute;left:0;right:0;top:0;bottom:0;animation:pulse_animation 1s infinite;-webkit-animation:pulse_animation 1s infinite;-moz-animation:pulse_animation 1s infinite;z-index:-1;}
.pulse .modal iframe{width:100%;height:400px;}
.video iframe{height: 80vh;}
.video-sec {
  background: #ddd2;
  padding: 1.5rem;
}
.about-list{margin:0px;}
.about-list li{margin-right:20px;margin-bottom:20px;list-style:none;;      display:inline-block;}
.about-list li:before {
  content: '\1f5f8';
  font-weight: 700;
  font-size: 120%;
  vertical-align: top;
  margin-right: 5px;
  color: #6b1ad1;
}
.about-us-img-one {
  overflow: hidden;
  border: 3px solid #fff;
  outline: 2px solid #ccc;
  box-shadow: 2px 2px 10px #333 inset;
}
.about-us-img img {
  width: 100%;
  margin: -50px 0;
}
/* pulse */
@keyframes pulse_animation{
  0% {
      box-shadow: 0 0 0 0 rgba(0, 0, 0, .5);
  }
  100% {
      box-shadow: 0 0 0 40px rgba(0, 0, 0, 0);
  }
}


.ico-text {
  color: #2a377f;
  text-decoration: none;
  display: inline-flex;
  border-radius: 5px;
  font-size: 20px;
  border: 1px solid transparent;
  padding: 5px 10px;
  transition: all 0.3s;
  align-items: center;
  gap: 10px;
  position: relative;
}
.ico-text img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid;
}
.ico-text i {
  display: inline-block;
  width: 54px;
  line-height: 54px;
  text-align: center;
  background: #fff1;
  color: #fff;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 34px;
  border: 1px solid #fff3;
}
.ico-text:hover {border-color: #fff3; background-color: #fff1; color: #d01365;}
.ico-text small {
  display: flex;
  font-size: 70%;
  line-height: 1;
  opacity: 0.7;
}
.ico-text .prof-drop {
  position: absolute;
  top: 160px; opacity: 0; pointer-events: none;
  right: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 2px;
  box-shadow: 1px 1px 20px #0008;
  color: #1e2574;
  padding: 15px 10px;
  z-index: 1;
  transition: all 0.3s;
}
.ico-text:hover .prof-drop {
  top: 65px; opacity: 1; pointer-events: all;
}
.ico-text .prof-drop:before {
  content: '';
  display: block;
  border-bottom: 10px solid;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  width: 1px;
  position: absolute;
  top: -8px;
  right: 23px;
  color: #fff;
}
.ico-text .prof-drop ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.ico-text .prof-drop ul a{
  display: block;
  text-decoration: none;
  padding: 2px 10px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
}
.ico-text .prof-drop ul a:hover{
  background-color: #1e257411;
  /* border-color: #1e257433; */
}
.logout-btn {
  text-decoration: none;
  font-size: 16px;
  background: linear-gradient(135deg, #ededed, #fdfdfd);  
  display: inline-block;
  border-radius: 5px;
  box-shadow: -2px -2px 2px #fff, 2px 2px 2px #3331, 0px 0px 10px #eee;
  padding-right: 15px;
  line-height: 32px;
}
.logout-btn i{
  color: inherit;
  font-size: 18px;
  line-height: 32px;
  width: 32px;
}
.logout-btn:hover {background: linear-gradient(135deg, #f5f5f5, #ddd);}
.container-fluid{padding-left: 30px; padding-right: 30px;}
.menus a{
  color: #180047;
    border: 1px solid #3330;
    display: block;
    padding: 2px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}
.menus a:hover{
  color: #ab1435;
  border: 1px solid #3332;
  background-color: #3331;
}
form {
  padding: 20px;
  border: 2px dashed #ddd;
  border-radius: 5px;
  background: #ddd1;
}
.form-group {
  margin-bottom: 15px;
}
.success-badge{
  font-size: 18px;
  position: absolute;
  right: 37px;
  top: 102px;
}
.error-span{
  color: red !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  /* margin-left: 17px !important; */
}
@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll !important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static !important}}body.swal2-toast-shown .swal2-container{box-sizing:border-box;width:360px;max-width:100%;background-color:rgba(0,0,0,0);pointer-events:none}body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}body.swal2-toast-shown .swal2-container.swal2-top-start,body.swal2-toast-shown .swal2-container.swal2-top-left{top:0;right:auto;bottom:auto;left:0}body.swal2-toast-shown .swal2-container.swal2-center-start,body.swal2-toast-shown .swal2-container.swal2-center-left{top:50%;right:auto;bottom:auto;left:0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;transform:translate(-50%, -50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-start,body.swal2-toast-shown .swal2-container.swal2-bottom-left{top:auto;right:auto;bottom:0;left:0}body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}