:root,[data-theme="light"]{
  --bgColor: #f7f8fa;
  --HoneyColor: #bfa160;
  --DarkColor: #1d1934;
  --FontColor: #000;
  --line: #E8E9EC;
  --white: #fff;
  --black: #000;
  --menucolor: #BBC5D5;
  --red: #F35162;
  --fontred: #6A2626;
  --fontgreen: #20966f;
  --graycolor: #BCB9B9;
  --linkcolor: #6FBEEB;
  --Darkgraycolor: #1d1934a6 ;
  --primary: #fff;
  --Inputbg: #EBE9EC;
  --darkborder: #707070;
  --primary: #000;
  --orange: #FA6A18;
  --tabborder: #9D9C9C;
  --dark:#000;
  --LightHoney:#bfa16045;
  --HoverHoney:#D2BE96;
  --blue:#70BEEB;
}
[data-theme="dark"]{
  --bgColor: #1F1F2E;
  --HoneyColor: #bfa160;
  --DarkColor:#1d1934;
  --FontColor: #FFF;
  --line: #E8E9EC;
  --bgwhite: #0A0620;
  --black: #000;
  --menucolor: #BBC5D5;
  --red: #F35162;
  --fontred: #6A2626;
  --fontgreen: #20966f;
  --graycolor: #BCB9B9;
  --linkcolor: #6FBEEB;
  --Darkgraycolor: #524f64e8;
  --primary: #fff;
  --Inputbg: #EBE9EC;
  --darkborder: #707070;
  --primary: #707070;
  --orange: #FA6A18;
  --tabborder: #9D9C9C;
}

body{
  background:var(--bgwhite);
}

[data-theme="dark"] .Dark-icon{
  filter: contrast(0.5) brightness(5);
}

[data-theme="dark"] .sp-bg-input{
  color:#000;
}
body, ul, li, a, p, span, h1, h2, h3, h4, h5, h6, input, button {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  outline: none;
  border: none;
  font-family: IRANSans;
  color: var(--FontColor);
  font-weight: normal;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--FontColor);
}

html {
  scroll-behavior: smooth;
}

img {
  width: 100%
}

a, button {
  cursor: pointer;
}

select {
  cursor: pointer !important;
  height:32px;
}

button:disabled {
  cursor: not-allowed !important;
}

::placeholder {
  font-size: 12px;
  color: #73818f;
  text-align: center;
  font-weight: normal;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type='radio']:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  bottom: -2px;
  left: -1px;
  position: relative;
  background-color: var(--white);
  content: '';
  display: inline-block;
  visibility: visible;
  border: 3px solid white;
  box-shadow: 0px 0px 0px 1px var(--DarkColor);
  right: -2px;
}

input[type='radio']:checked:after {
  background-color: var(--DarkColor); 
}

/* Firefox */

input[type=number] {
  -moz-appearance: textfield;
}

.sp-table-parent{
  max-height:500px;
  min-height:500px;
  overflow:auto;
}
/*BackGrounds*/

.sp-bg-light  ,input[type=button].sp-ultra-active.sp-bg-light, input[type=submit].sp-ultra-active.sp-bg-light, button.sp-ultra-active.sp-bg-light {
  background-color: var(--bgColor) !important;
}

.sp-bg-honey  ,input[type=button].sp-ultra-active.sp-bg-honey, input[type=submit].sp-ultra-active.sp-bg-honey, button.sp-ultra-active.sp-bg-honey{
  background-color: var(--HoneyColor) !important;
}

.sp-color-honey{
  color: var(--HoneyColor);
}

.sp-bg-dark ,input[type=button].sp-ultra-active.sp-bg-dark, input[type=submit].sp-ultra-active.sp-bg-dark, button.sp-ultra-active.sp-bg-dark{
  background-color: var(--DarkColor) !important;
}
.sp-bg-LightHoney{
  background-color: var(--LightHoney) !important;
}
.sp-transition {
  transition: 0.5s;
}

.sp-color-red {
  color: var(--fontred) !important;
}

.sp-bg-red ,input[type=button].sp-ultra-active.sp-bg-red, input[type=submit].sp-ultra-active.sp-bg-red, button.sp-ultra-active.sp-bg-red{
  background-color: var(--fontred) !important;
}

.sp-bg-green,input[type=button].sp-ultra-active.sp-bg-green, input[type=submit].sp-ultra-active.sp-bg-green, button.sp-ultra-active.sp-bg-green {
  background-color: var(--fontgreen) !important;
}

.sp-color-blue{
  color: var(--blue);
}
.sp-color-green {
  color: var(--fontgreen) !important;
}

.sp-color-gray {
  color: var(--graycolor);
}

.sp-bg-gray {
  background-color: var(--line);
}
.sp-dialog-main{
  background: transparent !important;
}

.sp-font-xxsmall {
  font-size: 10px;
}

.sp-font-xlarge {
  font-size: 18px;
}

.sp-font-xxlarge {
  font-size: 20px;
}

.sp-font-xnormal {
  font-size: 11px;
}

.sp-overflow-auto {
  overflow-x: auto;
}
.sp-overflow-hidden {
  overflow: hidden;
}

.sp-b-honey{
  border-color: var(--HoneyColor);
}

.sp-b-dark{
  border-color:var(--DarkColor);
}

.sp-b-green{
  border-color:var(--fontgreen);
}

.sp-color-link {
  color: var(--linkcolor);
}

.sp-bg-darkgray,input[type=button].sp-ultra-active.sp-bg-darkgray, input[type=submit].sp-ultra-active.sp-bg-darkgray, button.sp-ultra-active.sp-bg-darkgray {
  background-color: var(--Darkgraycolor) !important;
}


.sp-bg-input {
  background-color: var(--Inputbg);
}

.sp-color-orange, .sp-orange {
  color: var(--orange) !important;
}

.sp-TextIndent-10 {
  text-indent: 10px;
}

.sp-justify-center {
  justify-content: center;
}

.sp-backdrop-blur{
  backdrop-filter: blur(2px);
}
.sp-WhiteSpace-Nowrap{
  white-space:nowrap;
}
.sp-rb-3{
  border-radius: 0 0 1rem 1rem;
}
.sp-rt-3{
  border-radius: 1rem 1rem 0 0 ;
}
.sp-w-auto{
  width:max-content;
  min-width: 100%;
}


.sp-dialog-overlay {
  backdrop-filter: blur(6px) !important;
  background-color: rgb(0 0 0 / 52%);
}
.sp-dialog{
  background: none !important;
  box-shadow: unset !important;
}
.sp-dialog-base{
  border-radius: 1rem;
}

/* Custom select */

.custom-select {
  width: 100%;
}

.custom-select select {
  display: block;
  opacity: 0;
  height: 0;
  visibility: hidden;
  padding: 0 !important;
}

.select-selected::after {
  position: absolute;
  content: "";
  top: 14px;
  transform: rotate(45deg);
  border: solid var(--graycolor);
  border-width: 0 3px 3px 0;
  padding: 3px;
  left: 10px;
}

.sp-ltr .select-selected::after{
  right:10px;
  left:auto;
}
.select-arrow-active.select-selected {
  border: 1px solid var(--darkborder);
  border-radius: 1rem 1rem 0 0 !important;
  border-bottom: 0;
}

.select-selected{
  min-height:40px;
}

.select-items {
  position: absolute;
  top: 98%; 
  left: 0;
  right: 0;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--Inputbg);
  border: 1px solid var(--darkborder);
  border-top: 0;
  border-radius: 0 0 1rem 1rem;
  max-height: 200px;
}
.sp-bg-light .select-items{
  background-color: var(--bgColor);
}
.sp-bg-input .select-items{
  background-color: var(--Inputbg);
}

.sp-bg-white .select-items{
  background-color: var(--white);
}

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.register-main-box{
  width: 50%;
  min-width: 500px;
  min-height:60vh;
}
.login{
  padding:4rem 0;
}
.login-wrapper{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.Loginbg{
  background-image: url(/themes/newliam/images/LoginBack.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.loginMain{
  min-height:100vh;
  height:100%;
}
.back-btn{
  top: 10%;
  left: 10%;
}
.form-input-icon{
  left: 2%;
  bottom: 16%;
}
.register-input{
  padding-right:2.2rem !important;
}
.register-input::placeholder{
  text-align:right;
}
.form-icon{
  right: 2%;
  bottom: 16%;
}
.code-input{
  width: 15%;
  min-height: 3rem;
}
/* CustomCheckBox */

.checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  height: 25px;  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--white);
  border: 1px solid var(--darkborder);
}

.checkbox input:checked~.checkmark {
  background-color: #1a5097;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox input:checked~.checkmark:after {
  display: block;
}

.checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.ParentCheckBox{
  min-height: 25px;
}

.edit-parent:hover .hover-edit{
  opacity:1;
}
.hover-edit{
  background: #1d193466;
  opacity:0;
}
/* MainSTyle */

.wrapper {
  width: 92%;
  max-width: 2100px;
  margin: auto;
}

/* rightMenu */

.logo-img {
  max-width: 150px;
}

.rightMenu {
  height: 100vh;
  width: 250px;
  border-radius: 52px 0 0 52px;
  z-index: 5;
  /* overflow-y: auto; 
  overflow-x: hidden;*/
  scrollbar-width: thin;
}
.right-menu-ul{
  max-height: 60vh;
  overflow-x: hidden;
}

body ::-webkit-scrollbar {
  width: 6px;
  height: 0.25rem; 
}

body ::-webkit-scrollbar-track {
  background: var(--LightHoney);
  border-radius: 1rem;
}

body ::-webkit-scrollbar-thumb {
  background: var(--DarkColor);
  border-radius: 1rem;
}

body ::-webkit-scrollbar-thumb:hover {
  background: var(--DarkColor);
}

.right-menu-text {
  color: var(--menucolor);
  align-items: center;
}

.right-menu-icon {
  width: 30px;
  min-height: 25px;
}

.right-menu-toggleicon {
  width: 17px;
  color: var(--menucolor);
  align-items: center;
}

.right-menu-item a:hover .right-menu-text, .right-menu-item.selected a.dropBtn .right-menu-text {
  color: var(--white);
  font-weight: 600;
}

.right-menu-item a:hover .right-menu-icon, .right-menu-item.selected a.dropBtn .right-menu-icon {
  filter: brightness(1.5);
}

.dropUl, .DropUlLinks {
  display: none;
}

.DropUlLinks {
  position: absolute;
  left: 0;
  border-radius: 0 0 1.5rem 1.5rem;
  right: 0;
  top: 63%;
  z-index:6;
}
.ResponsiveDropUl{
  display:none;
}
.notif-icon {
  width: 22px;
  height: 25px;
}

.notif-alert {
  background: var(--red);
  width: 30px;
  height: 30px;
}

.notifDiv {
  width: 300px;
  top: 140%;
  left: -58%;
  z-index: 55;
  min-height: 40vh;
}
.notif-ul{
  max-height: 60vh;
  overflow-x: hidden;
}

.notifDiv::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid var(--DarkColor);
  opacity: 76%;
  bottom: 100%;
  left: 11%;
  position: absolute;
}

.CloseIcon {
  top: -1rem;
  right: -0.75rem;
  width: 40px;
  height: 40px;
}

.contractBox,.CalendarBox {
  width: 48%;
}
.registerItem {
  width: 48%;
}
.contracttypeBox {
  width: 48%;
}
.Ratediv{
  width: 38%;
  flex:0.8;
  margin-left: 3rem;
}
.Chartdiv{
  width: 59%;
  flex:1.9;
}
/* leftside */

.left-Side {
  width: calc(100% - 250px);
  margin: 2rem auto 0 0;
}
.ChangeAmount{
  top: 2rem;
  left: 2%;
}
.CalcBtn{
  left: 0;
  top: 27%;
  border-radius: 0 2.2rem 2.2rem 0;
}
.CalcBtn:before,
.CalcBtn:after {
  content: "";
  position: absolute;
  height: 21px;
  width: 27px;
  left:0;
}

.CalcBtn:after {
  top: -20px;
  border-radius: 0 0 0 84px;
  box-shadow: -20px 14px 0 9px  var(--DarkColor);
}
.CalcBtn:before {
  bottom: -20px;
  border-radius: 84px 0 0 0;
  box-shadow: -20px -14px 0 9px  var(--DarkColor);
}
.CalcIcon{
  color: var(--menucolor);
}

/*
.Ratediv {
width: 32%;
}

.Chartdiv {
width: 64%;
}
*/
.exchange-item {
  width: 40%;
  display: flex;
}

.exchange-img {
  width: 30px;
  height: 30PX;
}

.profile-img {
  font-size:20px;
  object-fit: cover;
}

.alertdiv {
  width: 40px;
  height: 40px;
}

.active-alert {
  top: 14%;
  right: 24%;
}

.pie-img {
  max-width: 114px;
}

.pieDiv {
  width: 32%;
}

.transactionIcon {
  width: 20px;
}

.thememodeIcon {
  opacity: 0.5;
  border: 1px solid transparent;
}

.thememodeIcon.selected {
  opacity: 1;
  border: 1px solid var(--HoneyColor);
}

/* MainContent */

.MainContent {
  min-height: 70vh;
}

.EmptyContent{
  min-height:30vh;
}
.MainItem{
  min-height: 40vh;
}
.InputDiv {
  width: 46%;
}



/* form */

.sub-btn {
  min-width: 80px;
}

.form-input {
  width: 70%;
}

.filter-select{
  min-width:180px;
}
.contract-btn {
  min-width: 100px;
  min-height: 30px;
}

.ContractDetailBox-1 {
  width: 40%;
}

.ContractDetailBox-2 {
  width: 30%;
  margin-right: 3rem;
}

.ContractDetailBox-3 {
  min-width: 15%;
}

.ContractDetailBox{
  width:60%
}

.ContractMainList{
  width: 13%;
  margin-top: 2.29rem;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  margin-left: -0.08rem;
}
.ContractMainDetail{
  width:87%;
}

.ContractTab {
  border-radius: 1rem 1rem 0 0;
  border: 1px solid var(--HoneyColor);
  border-bottom: 0;
}
.ContractTab a,.sp-font-xxnormal{
  font-size:13px;
}
.ContractTabParent{
  max-height:35px;
}
.contractTablist{
  max-width: 87%;
}

/* Notification */

.Paging-item {
  width: 30px;
  height: 30px;
}

.ProfileItem {
  width: 26%;
}

.ProfileParent{
  flex:3;
}

.ProfileImgBox{
  flex:1;
  margin-left:1rem;
}
/* InviteFriend */

.InviteCode {
  font-size: 25px;
  min-width: 150px;
}

/**/

.CalculaterDiv {
  width: 26%;
  min-width: 340px;
}
.CalculaterChild{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.ResaultDiv {
  width: 72%;
  min-width: 700px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.SymbolImg {
  max-width: 30px;
}


.FlexChild {
  flex: 1;
}

.RadioDiv{
  width:10%;
}

.refresh{
  left: 0.4rem;
  bottom: 12%;
}
.DescDiv {
  width: 45%;
}

.ContractSum-1{
  width:20%;
}
.ContractSum-2{
  width:40%;
}


.QuestionDiv {
  width: 10%;
}

.TabDiv {
  width: 50%;
}

.InnerWrapper {
  padding-left: 3%;
  padding-right: 3%
}

.InputHeight {
  max-height: 48px;
}

.QuestionIcon {
  width: 26px;
  height: 25px;
}

.table-row:nth-child(2n+1):not(last-child) {
  background: var(--LightHoney);
}

.table {
  overflow-y: hidden;
  border-collapse: collapse;
}


.table-cell-1 {
  width: 12.5%;
  min-width: 2.75rem;
  white-space: normal;
}

.table-cell-2 {
  width: 25%;
  min-width:5.5rem;
  white-space: normal;
}

.table-cell-3 {
  width: 40%;
  min-width:8.8rem ;
  white-space: normal;
}

.table-cell-4 {
  width: 60%;
  min-width: 13.2rem;
  white-space: normal;
}

.CalenderCell{
  width:13%;
}

.Data-img{
  width: 38%;
}
.Data-text{
  width:50%;
}

.contract-table {
  max-height: 20rem;
  width: 100%;
  min-width: max-content;
  overflow-y: auto;
}
.contract-table-row{
  width: 100%;
  min-width: max-content;
  overflow-x: auto;
}
.res-logo,.res-menu{
  display:none;
}
.PrintVisible{
  display:none;
}

.symbol-ul{
  min-height: 2.5rem;
  width: 70%;
}
.symbol-item{
  max-height:0px;
  overflow: hidden;
}
.symbol-item-child{
  width:70%;
}
.symbol-item.selected{
  max-height:40px;
}
.BankName{
  right: 2%;
  top: 50%;
}
.code-span{
  left: 0;
  top: 58%;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--Inputbg);
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch input:checked + .slider {
  background-color: var(--HoneyColor);
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.CalendarList .CalendarRow:nth-child(2n){
  background-color: var(--LightHoney) !important;
}
/* Rounded sliders */
.slider.round:before {
  border-radius: 50%;
}
.ContractCount-bg{
  background-image: url(/themes/newliam/images/Contract.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.CustomerCount-bg{
  background-image: url(/themes/newliam/images/customer.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.filter-honey{
  background-color: #655023b3;
  top:0;
  bottom:0;
  left:0;
  right:0;
}
.filter-title{
  font-size: 70px;
}
.title{
  font-size: 30px;
}

.ChartTitle{
  top: 41%;
}
.SettingItem:hover ,.SettingItem.selected{
  background-color:var(--HoverHoney);
}
.SettingBox{
  display:none;
}
.ShowHint:hover .HintBox{
  display:flex;
}
.ShowHint:hover i{
  color: var(--HoneyColor);
}
.HintBox{
  display: none;
  opacity: 0.9;
  top: 15px;
  background: black;
  left: -70px;
  z-index: 9999;
}

.ListItem.selected{
  border-left:0;
}
.ListItem.selected:after{
  content: "";
  position: absolute;
  right: 95%;
  width: 100%;
  border-top: 1px solid var(--DarkColor);
  border-bottom: 1px solid var(--DarkColor);
  background: var(--white) !important;
  top: -1px;
  bottom: -1px;
}
.GrayFIlter{
  backdrop-filter: blur(6px);
  z-index: 9;
  background: #2322223b;
  display:none;
}
.res-lg-logo,.CloseMenu,.CollapseMenu{
  display:none;
}
.res-lg-flex,.res-alert,.quickItem,.ContractTypeRes{
  display:none !important;
}
.VerifySign{
  bottom: 3px; 
  right: 0;
}
/*#################*/
/*#################*/
/*#######Responsive####*/
/*#################*/
/*#################*/
@media only screen and (max-width:1440px) {
  .ContractTab {
    padding: 0.45rem !important;
    border-radius: 0.75rem 0.75rem 0 0;
  }
  .ContractTab a{
    font-size: 12px !important;
  }
  .ProfileItem {
    width: 44%;
  }
  .sp-font-xxlarge{
    font-size:18px !important;
  }
  .sp-font-large{
    font-size:14px !important;
  }
  .sp-font-normal{
    font-size:12px !important;
  }
  .sp-font-small{
    font-size:10px;
  }
}
@media only screen and (max-width:1360px) {
  .ContractTab {
    padding: 0.3rem !important;
    border-radius: 0.45rem 0.45rem 0 0;
  }
  .ContractTab a{
    font-size: 11px !important;
  }
  .CalendarBox{
    width:100%;
    margin-top:1rem;
  }
  .Ratediv,.Chartdiv{
    width: 100%;
    flex:auto;
    margin-top:1rem;
    margin-left:0;
  }
  .contracttypeBox {
    width: 100%;
    min-width: 300px;
  }
  .Chartdiv  .sp-h-11{
    height:auto!important;
  }

}
@media only screen and (max-width:1200px) {
  .link-list , .contractTablist ,.ContractTab,.ContractTypelist{
    display:none !important;
  }
  .ContractTypeRes{
    display:block !important;
  }
  .ContractSum-1{
    width: 75%;
    justify-content: center;
    text-align: right;
  }
  .ContractSum-2 {
    width: 80%;
    text-align: right;
    margin-top: 1rem;
  }
  .ResponsiveDropUl{
    display:block;
  }
  .ProfileItem {
    width: 47%;
  }
  .exchange-list{
    width:100%; 
    margin-top:1rem;
  } 
  .ContractDetailBox {
    width: 100%;
  }
  .rightMenu.ShortMenu:not(.visible-menu) .right-menu-item a{
    justify-content:center;
  }
  .rightMenu.ShortMenu .rightMenu {
    width: 130px;
    border-radius: 25px 0 0 25px
  }
  .sp-mx-auto{
    margin-left:auto;
    margin-right:auto;
  }
  .rightMenu.ShortMenu:not(.visible-menu) .right-menu-text {
    flex-direction: column;
    margin: 1rem 0 0 0 !important;
    justify-content: center;
  }
  .rightMenu.ShortMenu .right-menu-toggleicon{
    display:none !important;
  }
  .res-lg-none , .rightMenu.ShortMenu:not(.visible-menu) .profile-img{
    display:none !important;
  } 
  .rightMenu.ShortMenu:not(.visible-menu)  .res-lg-logo{
    display:flex !important;
  } 
  .rightMenu:not(.ShortMenu)  .userlink{
    display:none !important;
  } 
  .rightMenu:not(.ShortMenu){
    width: 50%;
    min-width: 320px;
  }
  .res-lg-flex,.quickItem{
    display:flex !important;
  } 
  .rightMenu:not(.ShortMenu) .quickItem{
    flex-direction:row;
    justify-content:space-around;
  }
  .ProfileImgBox {
    flex: auto;
    margin-left: 0;
    width: 100%;
  }
  .edit-parent{
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 1rem !important;
  }
  .login-gif, .Data-img{
    display:none !important;
  }
  .Data-text,.InputDiv {
    width: 100%;
  }
  .login {
    justify-content: center;
  }
  .login-gif{
    display:none !important;
  }
  .login {
    justify-content: center;
  }
  .right-menu-ul {
    max-height: 50vh;
    overflow-x: hidden;
  }
  .rightMenu:not(.ShortMenu) .CollapseMenu{
    display:flex;
  }
  .CloseMenu i,.CollapseMenu i{
    left: 2rem;
    top: 2rem;
  }
  .visible-Filter{
    display:block;
  }
}

@media only screen and (max-width:1024px) {
  .sp-w-7{
    width:100% !important;
    max-width:unset;
  }
  .sp-column-reverse{
    flex-flow: column-reverse;
  }
}
@media only screen and (max-width:992px) {
  .rightMenu.visible-menu .quickItem{
    flex-direction:row;
    justify-content:space-around;
  }
  .ListItem {
    min-height: 9rem;
    height: max-content;
    white-space:nowrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 .5rem 0.5rem 0!important;
  }
  .ContractMainList {
    width: 8%;
    max-height: 34rem;
    margin-top: 4.5rem;
    overflow-y: auto;
    padding: 0!important;
  }
  .ContractMainDetail {
    width: 92%;
  }
  .ListItem a{
    transform: rotate(90deg);
    display: flex !important;
    flex-flow: column;
    justify-content: center;
  }
  .left-Side {
    width: calc(100% - 130px);
    margin: 2rem auto 0 0;
  }
  .res-logo,.CloseMenu{
    display:block; 
  }

  .ResaultDiv{
    margin: 2rem 0 !important;
    width: 100%;
    min-width: auto;
  }
  .DescDiv {
    width: 100%;
  }
  .ContractDetailBox-2 ,.ContractDetailBox-1{
    margin-bottom:1rem;
    width: 100%;
    margin-right: 0rem;
  }
  .ProfileItem {
    width: 100%;
  }
  .FilterForm{
    display:none;
  }
  .sp-lg-flex-between{
    justify-content:space-between;
  }
  .CalcBtn{
    display:none;
  } 
  .right-menu-ul {
    max-height: 40vh;
  }
  .rightMenu{
    z-index: 10;
    height: 100vh;
    display: none !important;
  }
  .right-menu-close{
    top: 1.5rem;
  }
  .rightMenu.visible-menu{
    display: flex !important;
    width: 100%;
    border-radius: 0;
    opacity: 0.92;
    min-width: 320px;
    padding-bottom: 4rem !important;
  }
  .left-Side{
    width:100%;
  }
  .right-menu-item a {
    justify-content:space-between;
  }
  .right-menu-text {
    margin: 0 1.5rem 0 0 !important; 
    flex-direction: row;
    justify-content: space-between;
  }
  .right-menu-toggleicon{
    display:flex !important;
  } 
  .res-menu,.res-alert{
    display:flex !important;
  }
  .Menu-Icon{
    width: 30px;
    height: 30px;
  }
  .res-none,.CollapseMenu{
    display:none !important;
  }
  .visible-menu .userlink{
    display:none !important;
  }
  .rightMenu.ShortMenu .right-menu-toggleicon{
    display:block !important;
  }
}
@media only screen and (max-width:768px) {
  .registerItem {
    width: 100%;
  }

  .alertdiv {
    margin-right: 0 !important;
    background: transparent;
  }

  .notifDiv{
    left:50%;
  }

  .notifDiv::before {
    left: 1.8rem;
  }

  .contractBox{
    width:100%;
  }
  .register-box{
    width:98% !important;
    max-width: fit-content;
  }

  .InputDiv{
    width:100%;
  }
  .FlexChild{
    margin: 1rem !important; 
  }

  .RadioDiv {
    width: 16%;
  }
}
@media only screen and (max-width: 576px){
  .FlexChild{
    width:100%;
    flex:auto;
  }
  .notifDiv {
    left: -8%;
  }
  .register-main-box,.register-box{
    min-width: 300px !important;
    min-height: 70vh;
    width: 90%;
  }
  .gold-logo {
    width: 60px;
  }
  .InnerWrapper {
    padding-left: 2%;
    padding-right: 2%;
  }
  .CalculaterDiv ,.sp-w-8{
    width: 100% !important;
    min-width: auto !important;
    max-width:unset;
  }
  .sign-out{
    min-height: 35vh;
  }
}
@media print{
  .print-none{
    display:none !important;
  }
  .overflow-scroll{
    overflow-x:hidden;
  }
  .print-block,.PrintVisible{
    display:block !important;
  }
  .wrapper{
    width:100%;
    padding:0 !important;
    margin:0 !important;
  }
  .left-Side {
    width: 100% !important;
    margin: 0 !important;
  }
  .InnerWrapper{
    margin:1% !important;
  }
  table td,.sp-pl-3.sp-pr-3,.sp-pb-3{
    padding-left:0 !important;
    padding-right:0 !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
    padding:0 !important;
    margin:0 !important;
    font-size:smaller !important;
  }
  .sp-font-small{
    font-size:8px !important;
  }
  .sp-font-normal{
    font-size:10px !important;
  }
  .wrapper {
    width: 100% !important;
  }
}


tr {
  border: 1px solid #00000026;
}
td, th {
  border-inline: 1px solid #00000026;
  padding-block:0.5rem;
}
th {
  padding-top: 1.5rem;
  background: white;
}
tr:nth-child(2n) {
  background: #1d193429;
}