@charset "utf-8";
/* CSS Document */


/* Reset */

/* Bootstrap Reboot v4.3.1 */
*,*::before,*::after{box-sizing:border-box}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:2.5rem}h2{font-size:2rem}h3{font-size:1.75rem}h4{font-size:1.5rem}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:none}a:hover{color:#024dbc;text-decoration:underline}a:not([href]),a:not([href]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img{vertical-align:middle}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[list]::-webkit-calendar-picker-indicator{display:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{-webkit-appearance:textfield}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}mark{padding:.2em;background-color:#fcf8e3}progress{vertical-align:baseline}::-webkit-datetime-edit{overflow:visible;line-height:0}[type="search"]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}main{display:block}[hidden]{display:none!important}

/* Reset */

main, article, aside, figure, footer, header, nav, section, details, summary {display: block;}

ul,ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Form Reset */
textarea {
	vertical-align:top;
	overflow:auto;
}
input,label,select,button,textarea {
	margin:0;
	border:0;
	padding:0;
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
	background:none;
	font-weight: 300;
}
input:focus,textarea:focus , button:focus {
	outline:0;
}
/* Text Inputs */
textarea,
input[type=email],
input[type=tel],
input[type=password],
input[type=search],
input[type=number],
input[type=text]
{
	padding: 8px 15px;
    border: 2px solid #e0e1e2;
    border-radius: 15px;
    transition: all .3s;
    background-color: #fff;
}
textarea:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=text]:focus
{
    border-color: #3ddabb;
}
textarea.error,
input[type=email].error,
input[type=tel].error,
input[type=password].error,
input[type=search].error,
input[type=number].error,
input[type=text].error
{
	border-color: #ff5722;
    background-color: #fbe9e7;
}
textarea.error:focus,
input[type=email].error:focus,
input[type=tel].error:focus,
input[type=password].error:focus,
input[type=search].error:focus,
input[type=number].error:focus,
input[type=text].error:focus
{
    border-color: #3ddabb;
	background-color: #fff;
}
textarea.success,
input[type=email].success,
input[type=tel].success,
input[type=password].success,
input[type=search].success,
input[type=number].success,
input[type=text].success
{
	border-color: #3ddabb;
    background-color: #cbfff5;
}
textarea.success:focus,
input[type=email].success:focus,
input[type=tel].success:focus,
input[type=password].success:focus,
input[type=search].success:focus,
input[type=number].success:focus,
input[type=text].success:focus
{
    border-color: #3ddabb;
	background-color: #fff;
}

/* Buttons */
.btn,
button,
input[type="reset"],
input[type="button"],
input[type="submit"]
{ 
	cursor: pointer;
    display: inline-block;
    min-height: 1em;
    outline: 0;
    border: none;
    vertical-align: baseline;
    background: #e0e1e2 none;
    color: rgba(0,0,0,.6);
    padding: .78571429em 1.5em .78571429em;
    text-transform: none;
    text-shadow: none;
    font-weight: normal;
    line-height: 1em;
    font-style: normal;
    text-align: center;
    text-decoration: none;
    border-radius: 35px;
    -webkit-box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgba(34,36,38,.15) inset;
    box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgba(34,36,38,.15) inset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: opacity .1s ease,background-color .1s ease,color .1s ease,background .1s ease,-webkit-box-shadow .1s ease;
    transition: opacity .1s ease,background-color .1s ease,color .1s ease,background .1s ease,-webkit-box-shadow .1s ease;
    transition: opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;
    transition: opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease,-webkit-box-shadow .1s ease;
    will-change: '';
    -webkit-tap-highlight-color: transparent;
}
.btn:hover,
button:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
input[type="submit"]:hover
{
	background-color: #cacbcd;
    background-image: none;
    -webkit-box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgba(34,36,38,.15) inset;
    box-shadow: 0 0 0 1px transparent inset, 0 0 0 0 rgba(34,36,38,.15) inset;
    color: rgba(0,0,0,.8);
}
.btn:active,
button:active,
input[type="reset"]:active,
input[type="button"]:active,
input[type="submit"]:active
{
	background-color: #babbbc;
    background-image: '';
    color: rgba(0,0,0,.9);
    -webkit-box-shadow: 0 0 0 1px transparent inset,none;
    box-shadow: 0 0 0 1px transparent inset,none;
}
a.btn,a.btn:hover {
	transition: all .1s
}

.btn-white {
	background-color: #fff!important;
	color: #757575!important;
}
.btn-white:hover {
	background-color: rgba(255, 255, 255, 0.8)!important;
    color: #000!important;
}
.btn-white:active {
	background-color: rgba(255, 255, 255, 0.7)!important;
    color: #000!important;
}
.btn-blue{
	background-color: #3ddabb!important;
	color: #fff!important;
}
.btn-blue:hover {
	background-color: #30c3a6!important;
	color: #fff!important;
}
.btn-blue:active {
	background-color: #25b195!important;
	color: #fff!important;
}
.btn-green {
	background-color: #8BC34A!important;
	color: #fff!important;
}
.btn-green:hover {
	background-color: #7CB342!important;
	color: #fff!important;
}
.btn-green:active {
	background-color: #689F38!important;
	color: #fff!important;
}
.btn-red {
	background-color: #f95723!important;
	color: #fff!important;
}
.btn-red:hover {
	background-color: #F4511E!important;
	color: #fff!important;
}
.btn-red:active {
	background-color: #E64A19!important;
	color: #fff!important;
}


/* Main Styles */

html,body {
	direction: rtl;
	verflow-x: hidden;
	font-family: 'Vazir FD' , -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: normal;
    color: #454a54;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #f9f9f9;
	font-size: 16px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0;
	padding: 0;
}
main {
	flex:1;
}

img {
	max-width: 100%;
	height: auto;
}
a,a:hover {
	color: inherit;
	text-decoration: none;
	transition: all .3s;
}
.wrap {
	margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}



.index {
	background-color: #11acac;
	background-image: -webkit-linear-gradient(160deg, #31e4cf 0%, #11acac 100%);
	background-image: -o-linear-gradient(160deg, #31e4cf 0%, #11acac 100%);
	background-image: linear-gradient(160deg, #31e4cf 0%, #11acac 100%);

	color: #fff;
	position: relative;
}

.header {
	/* background-color: rgb(255 255 255 / 10%); */
}
.header .wrap {
	display: flex;
    align-items: center;
}

.logo {
	padding: 25px;
	white-space: nowrap;
}
.logo a {
	
    font-size: 24px;
    font-weight: bold;
}
.logo img {
    
}
.menu {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	    padding: 15px;
}
.menu li {
	padding: 5px 10px;
}
.menu a:hover {
	color: #757575;
}
.panel .menu a:hover {
    color: #3edec9;
}
.menu i {
	
}
.socials {
	display: flex;
    margin-right: auto;
}
.socials li {
	padding: 5px 10px;
}
.socials a {
	font-size: 20px;
}
.socials a:hover {
    color: #757575;
}
.panel .socials a:hover {
	color: #44f9e4;
}
.socials i {
	
}
.index .body {
    text-align: center;
   margin: 150px auto 80px;
}
.index .body h1 {
	margin-bottom: 20px;
	font-weight: bold;
}

.index .body p {
	
}

.searchform {
        display: flex;
    margin: 50px auto 100px;;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgb(28 76 156 / 15%);
    overflow: hidden;
    border-radius: 30px;
	transition: all .3s;
}
.searchform:hover , .searchform:focus-within  {
    box-shadow: 0 0 5px #ffffff, 0 0 25px #ffffff, 0 0 50px #ffffff, 0 0 100px #ffffff;
}


.searchform input {
    border-radius: 0px 30px 30px 0;
    border: none;
    background-color: rgb(255 255 255 / 50%);
    padding-right: 25px;
    font-size: 22px;
    width: 100%;
}
.searchform button {
    border-radius: 30px 0 0 30px;
    background-color: #fff;
    color: #37cec5;
    font-size: 30px;
   padding: 20px 30px 16px 35px;
}


/* index btns */

.index-btns {
    display: inline-flex;
}

.signup-btn {
	    outline: none;
    text-align: center;
    width: 140px;
    background: #ffffff;
    border: 2px solid #ffffff;
    color: #2fb6b3;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.25s ease !important;
    border-radius: 0 25px 25px 0;
}
.signup-btn:hover {
    background: #fff;
}
.login-btn {
	outline: none;
    text-align: center;
    width: 140px;
    background: #fff0;
    border: 2px solid #ffffff;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.25s ease !important;
	border-radius: 25px 0 0 25px;
}
.login-btn:hover {
	color: #33c2bc;
    background: #ffffff;
}

.footer {
    text-align: center;
    padding: 15px 0;
}
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-links a {
    padding: 10px 15px;
}
.footer-links a:hover {
    color: #383838;
}
.copyright {
    margin: 10px 0 0;
    font-size: 15px;
    color: #82fffb;
}

/* Panel */
.panel {
	background-color: #fff;
	color: #757575;
	position: relative;
}
.panel .header {
}
.panel .logo {
    color: #28dec9;
}
.panel .body {
    display: flex;
}
.pcontent {
    background-color: #f8f9fe;
    width: 80%;
    border-radius: 0 45px 0 0;
    min-height: calc(100vh - 86px);
    padding: 30px 50px;
	box-shadow: -5px 5px 30px 0px rgb(28 76 156 / 3%) inset;
}
.panel .sidebar {
    width: 20%;
    min-height: calc(100vh - 86px);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.smenu {
	
}
.smenu li {
	margin-bottom: 5px;
}
.smenu li a {
	color: #a7b6c9;
    font-size: 16px;
    display: flex;
    padding: 15px 15px;
    line-height: 1;
}
.smenu li i {
	margin-left: 15px;
	transition: all .3s;
}

.smenu li span {
	
}

.smenu li small {
	margin-right: auto;
	transition: all .3s;
}
.smenu li a.active {
    background-color: #f4feff;
    color: #021535;
    border-radius: 17px;
}
.smenu li a.active i, .smenu li a.active small {
    color: #0ddabc;
}

.smenu li a:hover {
    color: #021535;

}
.smenu li a:hover i, .smenu li a:hover small {
}



.sfooter {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}
.sfooter a {
	color: #757575;
    font-weight: 300;
}
.sfooter a:hover {
	color: #021535;
}


/* pcontent = Panel Content side */
.ptitle {
    font-size: 22px;
    margin-bottom: 20px;
	font-weight: bold;
}
.ptitle i {
	font-size: 25px;
    color: #3ddabb;
    background-color: #f4feff;
    padding: 10px;
    border-radius: 15px;
    margin-left: 5px;
}
.box {
	background-color: #fff;
    border-radius: 25px;
    padding: 25px;
    margin-bottom: 25px;
	box-shadow: 0 20px 30px rgb(28 76 156 / 7%);
}
.bheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bheader h2 {
    font-size: 18px;
	font-weight: bold;
}


.bheader i {
    color: #a7b6c9;
    margin-left: 5px;
}

.bheader span {
    
}
.box hr {
    color: #e7e8ea;
    margin: 15px 0 30px;
}
.box-content h1 , .box-content h2 , .box-content h3 , .box-content h4 , .box-content h5 , .box-content h6 {
	font-size: 18px;
	margin-bottom: 20px;
}

.searchresults {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.searchresults .box {
    display: inline-block;
    width: 30%;
}

.searchresults .box .box-content {
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	color: #3ddabb;
}

.announcement {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.announcement .box {
    display: inline-block;
    width: 48%;
}

/* form extra styles */

.input {
    margin-bottom: 20px;
}


label.block-lbl {
    display: block;
    margin-bottom: 10px;
}
label.before-lbl {
    
}
label.after-lbl {
    
}


button i , .btn i {
    vertical-align: middle;
}

.btn-icon-right {
    padding: 0 0 0 20px !important;
    overflow: hidden;
}
.btn-icon-right i {
    padding: 15px 20px 15px 15px;
    background-color: rgb(255 255 255 / 5%);
    margin-left: 10px;
}

.btn-icon-left {
    padding: 0 20px 0 0 !important;
    overflow: hidden;
}
.btn-icon-left i {
    padding: 15px 15px 15px 20px;
    background-color: rgb(255 255 255 / 5%);
    margin-right: 10px;
}


/* check box style */

.cbx {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.cbx span:first-child {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #e0e1e2;
  transition: all 0.2s ease;
}
.cbx span:first-child svg {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 6px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #47dcbf;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  transition-delay: 0.2s;
}
.cbx span:last-child {
  margin-left: 8px;
}
.cbx span:last-child:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #B9B8C3;
  transform-origin: 0 0;
  transform: scaleX(0);
}
.cbx:hover span:first-child {
  border-color: #3ddabb;
}

.inp-cbx:checked + .cbx span:first-child {
  border-color: #2fc7a9;
    background: #3ddabb;
  animation: check 0.6s ease;
}
.inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(2.2);
  opacity: 0;
  transition: all 0.6s ease;
}
.inp-cbx:checked + .cbx span:last-child {
  color: #B9B8C3;
  transition: all 0.3s ease;
}
.inp-cbx:checked + .cbx span:last-child:after {
  transform: scaleX(1);
  transition: all 0.3s ease;
}

@keyframes check {
  50% {
    transform: scale(1.2);
  }
}

/* radio style */

.radio {
  position: relative;
    cursor: pointer;
    font-size: 15px;
    display: block;
    margin-bottom: 15px;
}
.radio .label {
  position: relative;
  display: block;
  float: right;
	margin-left: 10px;
  width: 20px;
  height: 20px;
  border: 2px solid #e0e1e2;
  border-radius: 100%;
  -webkit-tap-highlight-color: transparent;
}
.radio .label:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #3ddabb;
  transform: scale(0);
  transition: all 0.2s ease;
  opacity: 0.08;
  pointer-events: none;
}
.radio:hover .label:after {
  transform: scale(3.6);
}
input[type="radio"]:checked + .label {
  border-color: #3ddabb;
}
input[type="radio"]:checked + .label:after {
  transform: scale(1);
  transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
  opacity: 1;
}
.cntr {
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  width: 100%;
  text-align: center;
}
.hidden {
  display: none;
}



/* input file upload */
.input-file input[type="file"] {
    display: none;
}
.input-file .file-upload {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #3ddabb;
    color: #fff;
    border-radius: 25px;
}
.input-file .image-upload {
	display: block;
	width: 150px;
	height: 150px;
	border: 5px dashed #3ddabb;
	border-radius: 5px;
	position: relative;
	cursor: pointer;
}
.input-file .image-upload > img {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.input-file .image-upload > div {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	color: #fff;
	font-size: 72px;
	background-color: #3ddabb;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}
.input-file .image-upload.has-image > div {
	opacity: 0;
}
.input-file .image-upload.has-image:hover > div {
	opacity: 1;
}


/* Alerts */
.alert {
    padding: 15px 20px;
    background-color: #FF5722;
    color: #fff;
    margin-bottom: 15px;
    border-radius: 43px;
	text-align: right;
}

.alert.success {background-color: #8BC34A;}
.alert.info {background-color: #3ddabb;}
.alert.warning {background-color: #FFC107;}
.alert b {
    font-weight: bold;
    background-color: rgb(0 0 0 / 20%);
    padding: 5px 10px;
    border-radius: 25px;
}
.closebtn {
	margin-left: 15px;
	color: #fff;
	font-weight: bold;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
	vertical-align: middle;
}

.closebtn:hover {
  color: #000;
}








/* signup - login  */


.signup-in {
    text-align: center;
    margin: 35px auto;
    background-color: #fff;
    width: 100%;
    min-width: 300px;
    max-width: 480px;
    border-radius: 25px;
    display: inline-block;
    padding: 50px 30px 30px;
	color: #757575;
	    box-shadow: 0 10px 30px rgb(28 76 156 / 15%);
	overflow: hidden;
}
.signup-in input {
	width: 100%;
	max-width: 260px;
}


.signup-in.two-side {
	display: flex;
    max-width: 800px;
    padding: 0;
	
}
.signup-in.two-side form {
    width: 50%;
    padding: 50px 30px 30px;
}
.signup-side2 {
    background: url("img/register.jpg") top left/cover no-repeat;
    width: 50%;
}



/* specials */


.anim-btn{
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #03e9f4;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
}

.anim-btn:hover {
  background: #03e9f4;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #03e9f4,
              0 0 25px #03e9f4,
              0 0 50px #03e9f4,
              0 0 100px #03e9f4;
}

.anim-btn span {
  position: absolute;
  display: block;
}

.anim-btn span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03e9f4);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

.anim-btn span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

.anim-btn span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

.anim-btn span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}


/* Date Picker */
.datepicker-plot-area {
	font: 16px Vazir FD, sans-serif;
}
.datepicker-plot-area .title {
	padding: 0;
}
.datepicker-plot-area .toolbox .pwt-btn-today {
	font-size: 14px;
}




/* index search results */

.items {
    text-align: right;
	font-size: 15px;
	margin: 15px auto;
}
.items > li {
	background-color: #f9f9f9;
    color: #424242;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(28 76 156 / 15%);
    overflow: hidden;
    margin: 15px auto 30px auto;
	max-width: 1000px;
}

.ihead {
    display: flex;
	background-color: #fff;
}
.items figure {
    width: 30%;
	max-width: 160px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.items figure > i {
	font-size: 72px;
}
.items > li img {
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}
.ihead > div {
    width: 70%;
    padding: 15px;
}

.items h2 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.mainkeys {
    display: flex;
    flex-wrap: wrap;
	    
}
.mainkeys.users > li {
	width: 50%;
}
.mainkeys.users > li > strong {
	background-color: #021535;
	color: #fff;
	padding: 0 10px;
	border-radius: 25px;
}
.mainkeys:not(.users) > li:hover  {
    background-color: #f9f9f9

}
.ibtns {
    margin: 15px 0 0;
}
.icontent {
    padding: 25px;
	color: #757575;
}


.icontent .keys {
    display: flex;
    flex-wrap: wrap;
	font-size: 14px;
	font-weight: 100;
}

.icontent .keys li  , .mainkeys > li {
    padding: 5px 10px;
    transition: all .3s;
    border-radius: 25px;
}
.icontent .keys li:hover {
    background-color: #fff

}







/* panel search results */






























@media only screen and (max-width: 1200px) {

	
	.panel .sidebar {
    width: 25%; 
}
	.pcontent {
    width: 75%;

}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}


@media only screen and (max-width: 992px) {

	.panel .sidebar {
    	width: 30%; 
		padding: 40px 20px;
}
	.pcontent {
    	width: 70%;
		padding:30px;

}

.searchresults .box {
    width: 48%;
}
	
	
.announcement .box {
    width: 100%;
}
	
	
	
	
	
}


@media only screen and (max-width: 768px) {

	.panel .sidebar {
    	
		padding: 40px 10px;
}
	.pcontent {

		padding: 30px 25px;

}
	.smenu li a {
	font-size: 15px;
	
}
	
	/* index items */
	.panel .ihead {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.panel .items figure {
    width: 100%;
    max-width: 100%;
    max-height: 200px;
}
.items figure > i {
	margin: 0.5em 0;
}
.panel .ihead > div {
    width: 100%;
}
	/*  index items */
	
	
	.signup-side2 {
		display: none;
	}
	.signup-in.two-side {
    max-width: 800px;
    width: 60%;
    min-width: 350px;
}
	.signup-in.two-side form {
    width: 100%;

}

.mainkeys.users > li > span {
	display: block;
}
	
}

@media only screen and (max-width: 600px) {
	.socials
	
	
	{
    display: none;
	}
	.logo {
    padding: 15px;
}
	.logo a { 
    font-size: 20px;
	}
.menu {
	margin-right: auto;
    font-size: 15px;
	justify-content: flex-end;
	padding: 15px 0;
}

.index .body {
    margin: 100px auto 50px;
}
.index .body h1 {

    font-size: 30px;
}
.searchform {
	margin: 50px auto 60px;
    width: 90%;

}
.searchform button {
    font-size: 24px;
}

.login-btn , .signup-btn{

    font-size: 18px;

}	
	
	/* index items */
	.ihead {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
	.items figure {
    width: 100%;
    max-width: 100%;
    max-height: 200px;
}
	.ihead > div {
    width: 100%;
}
	.items > li {
    
    margin: 15px 0;
}
	/*  index items */
	
	
	.smenu li a {
	text-align: center;
    flex-direction: column;
    align-items: center;
}
	.smenu li i {

    display: block;
    margin: 0 0 10px;
}
	.smenu li small {

    margin: 10px 0 0;
}
	.panel .sidebar {
    	padding: 40px 5px;
		width: 20%;
}
	
	.pcontent {
    padding: 30px 15px;
		width: 80%;
}
	
	.sfooter {
    padding: 0 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	line-height: 2;
}
	
	
	.ptitle {
    font-size: 20px;

}
	.ptitle i {
    font-size: 20px;
    margin-right: 10px;
}

	.bheader h2 ,.box-content h1, .box-content h2, .box-content h3, .box-content h4, .box-content h5, .box-content h6  {
    font-size: 16px;

}

.searchresults .box {
    width: 100%;
}
	
	
	
	
	
	
	
	
	
	
}

@media only screen and (max-width: 420px) {
	.smenu li a {
    font-size: 14px;
}
	
	
	.items figure {
    max-height: 160px;
}
	
	.panel .items figure {

    max-height: 160px;
}
	
	.box {
    padding: 25px 15px;
}
	
	
	.signup-in.two-side {
    max-width: 800px;
    width: 100%;
    min-width: 270px;
}
	
	
	
}

@media only screen and (max-width: 360px) {
	.menu {

    font-size: 14px;
}
	
}