/*Date - 10 March, 23*/


:root {
  --orange: #db620a;
  --blue: #053d6e;
  --semiOrange: #fdf1e8;
  --semiorange: #f5c9a2;	
  --white:#fff;
  --grey:#DCDCDC;
  --black:#353535;
  --lighblack:#80878E;	
  --body-bg: #f5f6f7;
  --darkorange: #703D10;
  --darkgreen: #185827;	
  --darkred:#912921;
  --lightred:#FFF1F0;	
  
	
  /* Secondary */
  --lightYellow: #f7f2e9;
  --yellow: #eb9923;
  --lightMagenta: #f3e0ec;
  --magenta: #bf5698;
  --lightPurple: #ecebf7;
  --purple: #7b73bf;	
  --lightblue:#eff6ff;
  --lightgreen:#EBF9EE;
  --lightyellow:#f7f2e9;
  --darkgrey:#9b9b9b;
  --gold:#905E28;	
  --lightred-2:rgba(254, 60, 48, 0.2);
  --border:#E7E8EA;
	
  --navpills-border:#1E2230;
  --navpills-bggrey:#f5f6f7; /*rgba(17, 21, 34, 0.03)  f8f9fa*/
  --navpills-txtgrey:#1E2230;
	
  --lightbgyellow:#F7F2E9;
  --lightyellow-border:#EB9923;
  --lighttxtyellow:#EB9923;
  --badgelightgreen:rgba(71, 178, 98, 0.1);
  --badgelightblue:rgba(101, 237, 255, 0.1);	
	
  /* Stocks */
  --red: #fe3c30;
  --red-rgb: 254, 60, 48;
  --green: #34c758;
  --green-rgb: 52, 199, 88;
  --freshGreen: #26bf26;	
}

/*Dark Mode*/
[data-bs-theme=dark] {
  /* Text */
  --textPrimary: #ffffff;
  --textSecondary: #c4c8cd;
  /* Main */
  --orange: #d75b1f;
  --blue: #03A9F5;
  --lightBlue: #eff6ff;
  --lightGray: #1e2230;
  --lightblue: rgba(5, 61, 110, 0.10);
  --lightgreen:#EBF9EE;	
  --darkgrey:#1E2230;
  --darkorange: #f5c9a2;
  --grey:#1E2230;
  --background: #0b0f1c;
  /*--white:#151A2B;*/
  --white:#1E2230;	
  --bg-white:#1E2230;
  --border:rgba(255, 255, 255, 0.15);
	
  --navpills-border:#fff;
  --navpills-bggrey:rgba(17, 21, 34, 0.03); /*#0B0F1C*/
  --navpills-txtgrey:#fff;	
	
  --lightbgyellow:#1E2230;
  --lightyellow-border:#EB9923;
  --lighttxtyellow:#EB9923;
  --badgelightgreen:rgba(71, 178, 98, 0.1);
  --badgelightblue:rgba(101, 237, 255, 0.1);	
	
  --black: #ffffff;
  --body-bg: #0B0F1C;
  --bs-body-bg: #151A2B;
  --bs-tertiary-bg: #151A2B;
  --semiOrange: rgba(112, 61, 16, 0.30)!important;
	
  /* Wealth */
  --mainPurple: #2d2433;
  --purpleBkg: #221b26;	
}


.theme-light-show{
	display: block;
}
.theme-dark-show{
	display: none;
}

[data-bs-theme="dark"] .theme-light-show{
	display: none;
}
[data-bs-theme="dark"] .theme-dark-show{
	display: block;
}

.img-learning{
	background: url(../images/learning.svg) no-repeat;
    width: 190px;
    display: block;
    background-size: cover;
}

[data-bs-theme="dark"] .img-learning { 
	background: url("../images/learning-black.svg") no-repeat;
	width: 190px;
	display: block;
    background-size: cover;
}

@font-face {
  font-family: Mulish;
  src: url(https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap) format();
}
/**Mixin**/
@mixin scrollbar {
  &::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }

  &::-webkit-scrollbar-track {
    background-color: var(--lightGray);
  }

  &::-webkit-scrollbar-thumb {
    background-color: var(--body-bg);
    border: 1px solid var(--lightGray);
    border-radius: 18px;
  }
}

body {

  font-family: 'Mulish', Helvetica, Arial, 'sans-serif';
  font-size:14px;
  -webkit-font-smoothing: antialiased;
}

a{
	text-decoration:none;
}

.mw-75{
	min-width:75px;
}

.mw-100{
	min-width:100px;
}
.mxw-200{
	max-width: 200px;
}

.mh-50{
	max-height:50px;
}

.h-200{
	max-height:200px;
}

.h-300{
	max-height:300px;
}
.w-125{
	width:125px;	
}
.w-200{
	width:200px;	
}
.w-30{
    width:30%;    
}
.w-70{
    width:70%;    
}
.w-35{
    width:35%;    
}

.w-250{
	width:250px;
}

.w-300{
	width:300px;	
}

.mt-35{
	margin-top:-35px;
}

.tooltip-inner {
    max-width: 100% !important;
}

.rounded-sm-icon{
	max-width:40px;
	max-height:40px;
	border:1px solid var(--border);
	border-radius:36px;
	min-width: 40px;
	min-height: 40px;	
}
.rounded-xs-icon{
	max-width:32px;
	max-height:32px;
	border-radius:36px;
	min-width: 32px;
	min-height: 32px;
	line-height: 34px;
	text-align: center;
}


.card{
	background: var(--white)!important;
}

.default-col {
  background: var(--body-bg);
  height: calc(100vh - 60px);
  overflow: auto;
}

.badge-grey{ 
	background-color: var(--body-bg)!important; 
	border: 1px solid var(--lighblack)!important;
	color:var(--black)!important;
}

.badge-orange{ 
	background-color: var(--lightbgyellow)!important; 
	border: 1px solid var(--orange)!important;
	color:var(--darkorange)!important;
}
[data-bs-theme=dark] .badge-orange{
	background: rgba(112, 61, 16, 0.30)!important;
	color:var(--semiorange)!important;
}

.badge-yellow{
	background: var(--lightbgyellow)!important;
	border: 1px solid var(--lightyellow-border)!important;
	color: var(--darkorange)!important;
	font-weight: normal !important;
}

[data-bs-theme=dark] .badge-yellow{
	color:var(--lightyellow)!important;
}

.badge-green{
	background: var(--badgelightgreen)!important;
	color: var(--darkgreen)!important;
	border: 1px solid var(--green)!important;
	font-weight: normal !important;
}
[data-bs-theme=dark] .badge-green{
	background: rgba(24, 88, 39, 0.30);
	color:var(--lightgreen)!important;
}

.badge-red{
	background: var(--lightred);
	color: var(--darkred)!important;
	border: 1px solid var(--red)!important;
	font-weight: normal !important;
}
[data-bs-theme=dark] .badge-red{
	
	background: rgba(145, 41, 33, 0.30);
	color: var(--lightred)!important;
}

.badge-blue{
	background: var(--badgelightblue);
	border: 1px solid var(--blue)!important;
	color: var(--blue)!important;
	font-weight: normal !important;
}
[data-bs-theme=dark] .badge-blue{
	
	background: rgba(5, 61, 110, 0.10);
}

.default-col::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.default-col::-webkit-scrollbar-track {
  background-color: var(--lightGray);
}

.default-col::-webkit-scrollbar-thumb {
  background-color: var(--body-bg);
  border: 1px solid var(--lightGray);
  border-radius: 18px;
}

/* =============
    ::Selectors
   ============= */

/* Selection */
::selection {
  color: hsl(var(--white));
  background: hsla(var(--primary), 0.33);
}

/* Scrollbar */
::-webkit-scrollbar-track {
  background-color: hsl(var(--background));
}

::-webkit-scrollbar {
  width: 8px;
  background-color: hsl(var(--background));
}

::-webkit-scrollbar-thumb {
  background-color: hsl(var(--primary));
}

@media screen and (max-width: 768px) {
  .default-col {
    padding: 0 16px;
    height: 100vh;
  }
}

.cursor{
	cursor: pointer;
}

ul li{list-style: none;}

.title-h1{
	font-weight: 500;
	font-size: 20px;
	line-height: 150%;
}
.title-h2{
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
}

.title-h3{
	font-weight: 500;
	font-size: 14px;
	line-height: 150%;
}

.title-h4{
	font-weight: 500;
	font-size: 13px;
	line-height: 150%;
}

.title-h5{
	font-weight: 500;
	font-size: 12px;
	line-height:150%;
}

.title-h6{
	font-weight: normal;
	font-size: 10px;
}

.txt-white
{
	color:#fff;
}

.txt-black
{
	color: var(--black)!important;
}

.txt-lightblack
{
	color: var(--lightblack);
}

.txt-orange
{
	color: var(--orange);
}

.txt-darkorange
{
	color: var(--darkorange);
}

.txt-dark-blue
{
	color:var(--blue);
}
.txt-blue
{
	color:var(--lighblue);
}

.txt-stock-red
{
	color:var(--red);
}

.txt-stock-green
{
	color:var(--green);
}

.txt-magenta{
	color: var(--magenta) !important;
}

.txt-red
{
	color:#972926;
}
.txt-darkred
{
	color:#912921;
}

.txt-gray
{
	color:#80878E;	
}

.txt-light-green
{
	color:#26bf26	
}
.txt-darkgreen
{
	color: var(--darkgreen) !important;
}
.txt-darkgreen-2
{
	color: #008C09;
}


.txt-purple
{
    color:var(--purple);
}

.txt-yellow
{
    color:var(--yellow);
}
.txt-green {
    color: var(--green);
}

.mini-text {
	font-size:12px;
	font-weight:normal;
	color:var(--darkgrey);
	color:var(--darkgrey);
}

.overflow-overlay {
    overflow: overlay;
}

.logo-icon{
    max-width:36px;
}

.default-icon-placeholder{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  min-width: 40px;
  align-items: center;
  display: flex;
  justify-content: center;
  font-weight: bold;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
  --bs-bg-opacity: 1;
  border: 1px solid var(--bs-border-color);
}

.default-icon-image{
	width: 40px;
    height: 40px;
    background-color: var(--border);
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rounded-radius{ 
	border-radius: 38px;
}

.border-dashed{
	border: 1px dashed var(--border)!important;
}
.border{
	border: 1px solid #F5F6F7 !important;
}

.border-dark{
	border-color: #dcdcdc!important;
}	
.border-black{
	border: 1px solid var(--black)!important;
}

.border-grey{
	border: 1px solid var(--grey)!important;
}

.border-orange{
	border: 1px solid var(--orange)!important;
}
.border-gold{
	border: 1px solid var(--gold)!important;
}
.border-purple{
	border: 1px solid var(--purple)!important;
}

.border-magenta{
	border: 1px solid var(--magenta) !important;
}

.border-yellow{
	border: 1px solid var(--yellow)!important;
}

.border-blue{
	border: 1px solid var(--blue)!important;
}

.border-purple{
	border: 1px solid var(--purple)!important;
}

.border-red{
	border-color: var(--red)!important;
}
.border-green{
	border: 1px solid;
	border-color: rgba(var(--green-rgb),var(--bs-border-opacity))!important;
}

.border-right{
	border-right: 1px solid var(--border)!important;
}

.border-bottoms{
	border-bottom: 1px solid var(--border)!important;
}

.border-top{
	border-top: 1px solid var(--border)!important;
}

.border-topbottom{
	border-top: 1px solid var(--border)!important;
	border-bottom: 1px solid var(--border)!important;
}

.border-dashed-topbottom{
	border-top: 1px dashed var(--border)!important;
	border-bottom: 1px dashed var(--border)!important;
}
.border-dashed-bottom{
	border-bottom: 1px dashed var(--border)!important;
}
.border-top-left-radius{
	border-top-left-radius:0.375rem;
}

.border-top-right-radius{
	border-top-right-radius:0.375rem;
}

/*Form Elements*/
[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){

    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 1%29'/%3e%3c/svg%3e")
}

.form-switch-green .form-check-input{
	width: 40px;
    height: 24px;
}



/*Form Elements*/
.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 1%29'/%3e%3c/svg%3e")!important;
}

.form-switch .form-check-input{
	width: 40px;
    height: 24px;
	--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 1%29'/%3e%3c/svg%3e");
  background-color: #737373;
}

.form-check-input{border-color: var(--bs-border-color-translucent);}
.form-check-input:checked {
    background-color: var(--orange)!important;
    border-color: var(--orange)!important;
}

.form-control{
	border-color: var(--bs-border-color);;
}
.form-control:focus{
	 box-shadow: none;
	border-color: var(--bs-border-color);;
}
.form-check-input:focus {
    border-color: #737373;
    outline: 0;
    box-shadow:none !important;
}
.form-select:focus:focus{
	 box-shadow: none;
	border-color: var(--bs-border-color);;
}
.form-switch-green .form-check-input{
	width: 40px;
    height: 24px;
}


.form-switch-green .form-check-input{
  width: 40px;
  height: 24px;
	--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 1%29'/%3e%3c/svg%3e");
  background-color: #737373;
}

.form-switch-green .form-check-input:checked {
    background-color: var(--green)!important;
    border-color: var(--green)!important;
}

.form-switch-green .form-check-input:focus {
    border-color:#737373;
    outline: 0;
    box-shadow:none !important;
}
.form-switch-red .form-check-input:checked{
	    background-color: var(--red) !important;
    border-color: var(--red) !important;
}

.progress-bar-10{
	width:10%;
}

.progress-bar-25{
	width:25%;
}

.progress-bar-50{
	width:50%;
}

.progress-bar-100{
	width:100%;
}
/*END*/

.pad {
  box-shadow: 0px 0px 24px rgb(0 0 0 / 8%);
  background-color: #fff;
  padding: 16px;
  max-width: 360px;
  border-radius: 8px;
  bottom: 0px;
  top: 0px;
  position: absolute;
  right: 100%;
  display: none;
}

/*Button*/
.btn-theme {
    background: var(--orange);
    color: var(--white)!important;
    border: 1px solid var(--orange);
}

[data-bs-theme=dark] .btn-theme {
    background: var(--orange);
    color: var(--black)!important;
    border: 1px solid var(--orange);
}

.btn-theme:hover {
    background: rgba(239,104,32,0.6);
    color: var(--white)!important;
}
.btn.outline {
  background: transparent;
  border-width: 1px;
  border-style: solid;
}
.btn.outline.orange {
  border-color: var(--orange);
  color: var(--orange);
}
.btn.outline.orange:hover, .btn.outline.orange:focus {
  background: var(--orange);
  color: var(--white);
}
.btn.outline.blue {
  border-color: var(--blue);
  color: var(--blue);
}
.btn.outline.blue:hover, .btn.outline.blue:focus {
  background: var(--blue);
  color: var(--white);
}
.btn-buy{
  background-color: var(--green);
}
.btn-buy:hover{
  background-color: var(--green);
color: 	var(--white);

}
.btn-sell{
  background-color: var(--red);
}
.btn-sell:hover{
    background-color: var(--red);
	color: 	var(--white);
  
}

.btn-buy-outline{
	border:1px solid var(--green)!important;
	color:var(--green)!important;
	background-color:transparent!important;
}

.btn-buy-outline:hover{
	border:1px solid var(--green)!important;
	color:var(--white)!important;
	background-color:var(--green)!important;
}
.btn-sell-outline{
    border:1px solid var(--red)!important;
    color:var(--red)!important;
    background-color:transparent!important;
}

.btn-sell-outline:hover{
    border:1px solid var(--red)!important;
    color:var(--white)!important;
    background-color:var(--red)!important;
}

.btn-light-buy {
  background-color: rgba(52, 199, 88, 0.1);
}
.btn-light-buy:hover {
  color: var(--green);
}
.btn-light-sell {
  color: var(--red);
  background-color: rgb(254 60 48 / 10%);
}
.btn-light-sell:hover {
  color: var(--red);
  background-color: rgb(254 60 48 / 10%);
}
.btn-light-sell:focus {
  outline: none
}

.btn-primary {
  background-color: var(--orange)!important;
  border:1px solid var(--orange)!important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:visited
{
	opacity: 0.8;
	background-color:var(--orange);
}

.btn-secondary{
	background-color: var(--blue)!important;
	border:1px solid var(--blue)!important;	
}

.btn-secondary:hover{
	background:rgba(5,61,110,0.6)!important;
}

/*END*/

.bg-grey{
	background: var(--grey)!important;	
}

.bg-lightgrey{
	background: var(--grey)!important;	
	background-color: var(--grey)!important;	
}

.bg-darkgrey{
	background: var(--darkgrey)!important;	
}

.bg-lightgrey-2{
	background: var(--body-bg)!important;	
}

.bg-yellow{
	background: var(--yellow)!important;	
	background-color: var(--yellow)!important;	
}

.bg-lightmagenta {
	background: #F3E0EC;	
	background-color: #F3E0EC;	
}

.bg-yellow-2{
	background: #feeebb!important;		
	background-color: #feeebb!important;	
}

.bg-lightblue{
	background: var(--lightblue)!important;	
}

.bg-semiorange{
	background: var(--semiOrange)!important;	
}

.bg-orange{
	background: var(--orange)!important;	
}

.bg-yellow{
	background: var(--yellow)!important;	
}

.bg-magenta{
	background: var(--magenta)!important;	
}

.bg-purple{
	background: var(--purple)!important;	
}

.bg-stock-green{
	background-color: rgba(var(--green-rgb),var(--bs-bg-opacity))!important;
}

.bg-darkred{
	background: var(--darkred)!important;	
}
.bg-stock-red{
	background-color: rgba(var(--red-rgb),var(--bs-bg-opacity))!important;
}

.bg-lightred-2 {
    background: var(--lightred-2)!important;
}

.bg-lightgreen{
	background: var(--lightgreen)!important;	
}

.bg-lightred{
	background: var(--red)!important;	
}

.bg-white-1{
	background: var(--white)!important;	
}

.bg-white {
    background: var(--white)!important;	
}

.legend{
	width:10px;
	height:10px;
	border-radius:2px;
	margin-top:3px;
}

.bg-opacity-100 {
	--bs-bg-opacity:1;
}

.bg-opacity-70 
{
	--bs-bg-opacity: 0.7;
}

.bg-opacity-50 
{
	--bs-bg-opacity: 0.5;
}

.bg-opacity-30 {
    --bs-bg-opacity: 0.3;
}

.bg-opacity-20 {
    --bs-bg-opacity: 0.2;
}

.bg-opacity-15 {
    --bs-bg-opacity: 0.15;
}

.fivestar
{
	background: #87C733;
}

.fourstar
{
	background: #87C733;
}

.threestar{
	background:#AFC734;
}


.twostar{
	background: #D2C941;
}

.onestar{
	background: #D8AE23;
}

/*Modal*/
.modal-header{
	/*background: var(--semiOrange)!important;*/
	padding:10px!important;
}
/*END*/


.carousel-indicators {
  bottom: 8px !important;
}
.carousel-indicators .active-btn {
  background: #053d6e;
  opacity: 0.4;
  border-radius: 11px;
  /* Inside auto layout */
  border: none !important;
  flex: none;
  order: 1;
  flex-grow: 0;
  width: 4px;
  height: 4px;
}
.carousel-indicators .active-btn.active {
  width: 24px !important;
  opacity: 1;
}

.carousel-content {
  padding: 1rem;
}

/*Underline Tabs*/
.nav-underline {
	--bs-nav-underline-gap: 1rem;
	--bs-nav-underline-border-width: 0.125rem;
	--bs-nav-underline-link-active-color: var(--white);
	gap: var(--bs-nav-underline-gap);
}
.nav-underline .nav-link.active, .nav-underline .show>.nav-link {
	color: var(--orange);
	border-bottom-color: var(--orange);
	border-bottom: 2px solid;
}
.nav-underline .nav-link {
	padding-right: 0;
	padding-left: 0;
	color: var(--lighblack);
	border-bottom: 2px solid transparent;
}
/*END*/
.nav-pills {
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 16px;
  border: 1px solid var(--bs-border-color);
	--bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}
@media (max-width: 768px) {
  .nav-pills {
    flex-wrap: nowrap;
    overflow: hidden;
  }
	.nav-pills .nav-link {
    width: auto;
    white-space: nowrap;
    padding: 7px 20px;
  }
}
.nav-pills .nav-link {
  padding: 8px;
  font-size: 14px;
  line-height: 21px;
  color: var(--text2);
  border: 1px solid transparent;
}
.nav-pills .nav-link.active {
	border: 1px solid var(--orange)!important;
	background-color:var(--white)!important;
	color:var(--orange)!important;
  /*
	color: var(--text1);
	box-shadow: 0px 4px 4px rgba(174, 174, 174, 0.28);
	background: var(--white);
  border-radius: 5px;
	border: 1px solid var(--border)!important
	*/
}
.select-active {
  background-color: var(--semiOrange);
  color: var(--darkorange);
  border-color: var(--orange);
}
.select-box {
  position: relative;
  display: block;
  width: 130px;
}
.select-box-current {
  position: relative;
  cursor: pointer;
  outline: none;
}
.select-box-current:focus + .select-box-list {
  opacity: 1;
}
.select-box-current:focus + .select-box-list .select-box-option {
  cursor: pointer;
}
.select-box-current:focus .select-box-icon {
  transform: translateY(-50%) rotate(180deg);
}
.select-box-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease;
}
.select-box-value {
  display: flex;
}
.select-box-input {
  display: none;
}
.select-box-input:checked + .select-box-input-text {
  display: block;
  font-weight: 600;
  line-height: 19px;
  color: var(--blue);
}
.select-box-input-text {
  display: none;
  margin: 0;
}
.select-box-list {
  position: absolute;
  top: 25px;
  width: 100%;
  padding: 0;
  opacity: 0;
  list-style: none;
  z-index: 1;
  background-color: #fff;
  box-shadow: 0px 15px 16px 1px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 8px 8px;
}
.select-box-option {
  display: block;
  padding: 8px 8px;
  border-bottom: 1px solid #dcdcdc;
  color: var(--black);
	background: var(--bs-body-bg);
}
.select-box-option.last-option {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.select-box-option:hover, .select-box-option:focus {
  color: var(--orange);
  background: var(--navpills-bggrey);
}

#btn-left {
  cursor: pointer;
}

#btn-right {
  cursor: pointer;
}

.section-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: #353a3f;
  margin-bottom: 16px;
}

.section-title-col {
  display: flex;
  justify-content: space-between;
}
.section-title-col .see-more {
  font-weight: 600;
  line-height: 19px;
  color: var(--blue);
  cursor: pointer;
}


/*Step styling Starts*/
.step-default{
    background: rgba(197, 197, 197, 0.33);    
    padding: 2px;
    border-radius: 3px;
}
.step-active{
    background: rgba(52, 199, 88, 1);
}
.step-current{
    background: rgba(235, 153, 35, 1);
}
/*END*/

.orange-pagination .active>.page-link, .page-link.active{
	background-color: var(--semiOrange);
    border-color: var(--orange);
}

/*Time Line*/
ul.timeline-3 {
	list-style-type: none;
	position: relative;
}

ul.timeline-3:before {
  content: ' ';
  /*background: #e9e7e2;*/
  border: 1px dashed #E9E7E2;
  display: inline-block;
  position: absolute;
  left: 30px;
  width: 2px;
  height: 60%;
  z-index: 400;
}

ul.timeline-3 > li {
  margin: 30px 0;
  padding-left: 55px;
}

ul.timeline-3 > li:before {
  content: ' ';
  background: white;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 3px solid #e9e7e2;
  left: 20px;
  width: 22px;
  height: 22px;
  z-index: 400;
}

.timelineactive {
  content: ' ';
  background: white;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 5px solid var(--orange);
  left: 20px;
  width: 22px;
  height: 22px;
  z-index: 400;
}

.checkmark {
  display: inline-block;
  position: absolute;
  width: 22px;
  height: 22px;
  left: 20px;
  z-index: 400;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
}

.checkmark_circle {
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: green;
  border-radius: 11px;
  left: 0;
  top: 0;
}

.checkmark_stem {
  position: absolute;
  width: 3px;
  height: 9px;
  background-color: #fff;
  left: 11px;
  top: 6px;
}

.checkmark_kick {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: #fff;
  left: 8px;
  top: 12px;
}

.caret-none::after{
	display: none;
}

/*Range Slider https://stackoverflow.com/questions/4753946/html-slider-with-two-inputs-possible */
input[type='range'] {
  width: 100%; /*width: 210px;*/
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}
input[type='range'],
input[type='range']::-webkit-slider-runnable-track,
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: none;
}
input[type='range']::-webkit-slider-runnable-track {
  width: 200px;
  height: 5px;
  background: var(--grey);
  border-radius: 16px;
}

input[type='range']:nth-child(2)::-webkit-slider-runnable-track{
  background: none;
}

input[type='range']::-webkit-slider-thumb {
  position: relative;
  height: 15px;
  width: 15px;
  margin-top: -5px;
  background: #db620a;
  border: 1px solid #db620a;
  border-radius: 25px;
  z-index: 1;
}
input[type='range']:nth-child(1)::-webkit-slider-thumb{
  z-index: 2;
}
.rangeslider {
  position: relative;
  /*height: 60px;*/
  width: 100%; /*width: 210px;*/
  display: inline-block;
  /*    margin-top: -5px;
    margin-left: 20px;*/
}
.rangeslider input {
  position: absolute;
}

/*.rangeslider{
    position: absolute;
}*/
.rangeslider span {
  position: absolute;
  margin-top: 30px;
  left: 0;
}
.rangeslider .right {
  position: relative;
  float: right;
  /*margin-right: -5px;*/
}


/* Proof of concept for Firefox */
@-moz-document url-prefix() {
  .rangeslider::before{
    content:'';
    width:100%;
    height:2px;
    background: #003D7C;
    display:block;
    position: relative;
    top:16px;
  }

  input[type='range']:nth-child(1){
    position:absolute;
    top:35px !important;
    overflow:visible !important;
    height:0;
  }

  input[type='range']:nth-child(2){
    position:absolute;
    top:35px !important;
    overflow:visible !important;
    height:0;
  }
	
input[type='range']::-moz-range-thumb {
  position: relative;
  height: 15px;
  width: 15px;
  margin-top: -7px;
  background: #fff;
  border: 1px solid #003D7C;
  border-radius: 25px;
  z-index: 1;
}

  input[type='range']:nth-child(1)::-moz-range-thumb {
      transform: translateY(-20px);    
  }
  input[type='range']:nth-child(2)::-moz-range-thumb {
      transform: translateY(-20px);    
  }
}
/*END*/

@media (max-width: 767px) {
	.fixed-first-sm th:first-child, .fixed-first-sm td:first-child{
		position: sticky;
		left: 0px;
		background-color: var(--white);
	}
	
  .table-overflow th:first-child, .table-overflow td:first-child {
    width: 200px !important;
    min-width: 130px !important;
    white-space: revert;
    position: sticky;
    left: 0px;
    background: --var('white');
  }
  .pad {
    margin: 0 auto;
    right: 0 !important;
    left: 0 !important;
    display: none;
  }
}

/*view more*/
.collapsed .view-less-btn {
  display: none;
}
.view-less-btn {
  display: none;
}
.view-btn.active .view-more-btn {
  display: none;
}
.view-btn.active .view-less-btn {
  display: block;
}
.view-btn {
  text-decoration: none !important;
  display: block;
  text-align: center;
}
.view-more-btn, .view-less-btn {
  position: relative;
}
.view-btn:hover, .view-btn:hover {
  text-decoration: none;
}
.moreless-button {
  color: var(--orange);
  position: relative;
}
.moreless-button:before {
  content: '\F286';
  font-family: 'bootstrap-icons';
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  right: -20px;
  position: absolute;
  rotate: 180deg;
}
.uparrow:before {
  content: '\F286';
  font-family: 'bootstrap-icons';
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  transform: rotate(180deg);
  right: -20px;
  position: absolute;
}
.moretext {
  display: none;
}
.icon-48{
	max-width: 48px;
	min-height: 48px;
	max-height: 48px;
	
}
/*END*/
.accordion-button:focus{
	border-color: transparent;
	box-shadow: none;
}
.accordion-button:not(.collapsed){
	color: inherit;
	background-color: var(--body-bg);
	font-weight: bold;
    font-size: 14px;
}
.accordion-button{
	font-size: 14px;
}
.selected-cards .card:hover
{
	border:1px solid var(--orange);
		
}
.selected-cards .active{
	border:1px solid var(--orange);
}
.selected-cards .active-card-bg{
	border:1px solid var(--orange);
	background: var(--semiOrange)!important;
}
.disc-listing {
	padding-left: 15px;
}
.disc-listing li{
	list-style: disc;
	list-style-position: outside;
}
.lower-alpha-listing {
	padding-left: 15px;
}
.lower-alpha-listing li{
	list-style: lower-alpha;
	list-style-position: outside;
}
/*Grid Row*/
  .even-col-5 {
	  display: grid;
	  grid-template-columns: repeat(5, 1fr);
	  grid-template-rows: repeat(2);
	  gap: 8px;
  }
	

@media (min-width:768px) {
  .even-col {
	  display: grid;
	  grid-template-columns: repeat(6, 1fr);
	  grid-template-rows: repeat(2);
	  gap: 8px;
  }
	
}
@media (max-width:767px) {
  .even-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2);
    gap:8px;
  }
	
}
@media (max-width:480px) {
  .even-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2);
    gap:8px;
  }

   .even-col-sm-3{
    grid-template-columns: repeat(3, 1fr);
  }
		  .even-col-sm-1{
    grid-template-columns: repeat(1, 1fr);
		      display: grid!important;
  }
	  .even-col-sm-2{
    grid-template-columns: repeat(2, 1fr);
		      display: grid!important;
  }
}
.rounded-pill.active {
  background: var(--semiOrange) !important;
  color: var(--darkorange)!important;
  border-color: var(--orange) !important;
}

[data-bs-theme=dark] .rounded-pill.active {
  background: rgba(112, 61, 16, 0.30) !important;
  color: var(--semiorange) !important;
}

.rounded-pill-solid.active {
    background: var(--orange)!important;
    color: var(--white);
    border-color: var(--orange);
}
.folio-badge{
	
	position: absolute;
	margin-top:-30px; 
	left: -8px
}
.folio-badge-sm{
	
	position: absolute;
	margin-top: -28px;
    padding: 5px 10px;
	left: -8px;
		
}
[data-bs-theme=dark] .folio-badge{
	
	    background: #0b0f1c!important;
}
[data-bs-theme=dark] .folio-badge-sm{
	
	    background: #0b0f1c!important;
}


/*orange Number Form Feild*/
.number-form-control{
	display: flex;
   position: absolute;
   bottom: -13px;
   left: 0;
   right: 0;
   max-width: 70px;
   margin: 0 auto;
}
.minusinputfield{
	border-radius: 4px 0 0 4px;
}
.plusinputfield{
	border-radius: 0 4px 4px 0;
}
.minusinputfield, .plusinputfield{
	width: 26px;
	height: 26px;
	background: var(--orange);
	padding: 8px 5px 8px 5px;
	border: 1px solid var(--orange);
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	line-height: 10px;
	color: var(--white);
	margin: 0;

}
.number-form-control input{
	height: auto;
	width: 100%;
	text-align: center;
	font-size: 14px;
	background: var(--orange);
	color: var(--white);
	border: 1px solid var(--orange);
	display: inline-block;
	margin: 0 auto;
	vertical-align: middle;
	padding: 0;
}
.number-form-control input:focus{
	outline: none;
}

/*bs panel styles copied from style.css*/

.bs-card {
  width: 360px;
  -webkit-box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-size: 14px;
}

[data-bs-theme=dark] .bs-card  .bg-lightgreen{
	background: var(--bs-success-bg-subtle) !important;
}

.bs-card .card-body .divider {
  margin: 16px -16px;
  background-color: #bbbbbb;
}

.bs-card .card-body .depth-cross-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.bs-card .card-body .depth-cross-wrapper .md-title {
  font-size: 14px;
  line-height: 21px;
  color: #80878e;
}

.bs-card .card-body .depth-cross-wrapper img {
  cursor: pointer;
}

.bs-card .card-body .stock-bs-toggle-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 18px;
}

.bs-card .card-body .stock-bs-toggle-wrapper .stockName-edit-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 75%;
}

.bs-card .card-body .stock-bs-toggle-wrapper .stockName-edit-wrapper #nonEdit,
.bs-card .card-body .stock-bs-toggle-wrapper .stockName-edit-wrapper #edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bs-card .card-body .stock-bs-toggle-wrapper .stockName-edit-wrapper #sName {
  padding: 0;
  border: none;
  border-bottom: 1px solid black;
  width: 200px;
  margin-right: 8px;
}

.bs-card .card-body .stock-bs-toggle-wrapper .stockName-edit-wrapper #sName:focus-visible {
  outline: none;
}

.bs-card .card-body .stock-bs-toggle-wrapper .stockName-edit-wrapper .title {
  font-weight: 500;
  line-height: 24px;
  color: #353535;
  /*width: 200px;*/
  margin-right: 8px;
}

/*Chip*/
.bs-card .chip {
  display: flex;
  align-items: center;
  padding: 0px 6px;
  background: #F5F6F7;
  border-radius: 16px;
  margin: 0px 5px;
  font-size: 12px;
}

.bs-card .card-body .stock-bs-toggle-wrapper .stockName-edit-wrapper img {
  cursor: pointer;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle {
  position: relative;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"][disabled]~label {
  pointer-events: none;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"]:checked~label .bs-switch:before {
  content: attr(data-unchecked);
  left: 5px;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"]:checked~label .bs-switch:after {
  content: attr(data-checked);
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle label {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle label .bs-switch {
  position: relative;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle label .bs-switch:before {
  content: attr(data-checked);
  position: absolute;
  text-align: center;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle label .bs-switch:after {
  content: attr(data-unchecked);
  position: absolute;
  z-index: 5;
  text-align: center;
  background: white;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"][disabled]~label {
  color: #34c758;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"]:focus~label .bs-switch,
.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"]:hover~label .bs-switch {
  background-color: #34c758;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"]:checked~label .bs-switch {
  background-color: #fe3c30;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"]:checked~label .bs-switch:after {
  color: #fe3c30;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"]:checked:focus~label .bs-switch,
.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"]:checked:hover~label .bs-switch {
  background-color: #fe3c30;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"]:checked:focus~label .bs-switch:after,
.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"]:checked:hover~label .bs-switch:after {
  color: #fe3c30;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle label .bs-switch {
  -webkit-transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
  transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
  background: #34c758;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle label .bs-switch:before {
  color: #34c758;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle label .bs-switch:after {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
  transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
  transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1), -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
  color: #34c758;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle input[type="checkbox"]:checked~label .bs-switch:after {
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle label .bs-switch {
  height: 36px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 77px;
  flex: 0 0 77px;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle label .bs-switch:before {
  left: 67px;
  width: 30px;
  font-size: 14px;
  line-height: 36px;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle label .bs-switch:after {
  top: 5px;
  left: 3px;
  width: 65px;
  line-height: 32px;
  font-size: 14px;
  border-radius: 2px;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw input[type="checkbox"]:focus~label .bs-switch,
.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw input[type="checkbox"]:hover~label .bs-switch {
  background-color: #34c758;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw input[type="checkbox"]:hover~label {
  color: #34c758;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw input[type="checkbox"]:checked~label:hover {
  color: #fe3c30;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw input[type="checkbox"]:checked~label .bs-switch {
  background-color: #fe3c30;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw input[type="checkbox"]:checked~label .bs-switch:after {
  color: #fe3c30;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw input[type="checkbox"]:checked:focus~label .bs-switch,
.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw input[type="checkbox"]:checked:hover~label .bs-switch {
  background-color: #fe3c30;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw input[type="checkbox"]:checked:focus~label .bs-switch:after,
.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw input[type="checkbox"]:checked:hover~label .bs-switch:after {
  color: #353535;
  /*color: #fe3c30;*/
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw label .bs-switch {
  -webkit-transition: background-color 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: background-color 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  background: #34c758;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw label .bs-switch:before {
  color: #ffffff;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw label .bs-switch:after {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  color: #34c758;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw input[type="checkbox"]:checked~label .bs-switch:after {
  -webkit-transform: translate3d(30px, 0, 0);
  transform: translate3d(30px, 0, 0);
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw label .bs-switch {
  border-radius: 30px;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw label .bs-switch:before {
  left: 42px;
}

.bs-card .card-body .stock-bs-toggle-wrapper .bs-toggle.sw label .bs-switch:after {
  top: 5px;
  left: 5px;
  border-radius: 30px;
  width: 36px;
  line-height: 25px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.21);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.21);
  color: #353535;
  font-weight: 500;
}

.bs-card .card-body .nse-bse-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bs-card .card-body .nse-bse-radio label>input[type="radio"] {
  display: none;
}

.bs-card .card-body .nse-bse-radio label>input[type="radio"]+*::before {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  border-style: solid;
  border-width: 0.1rem;
  border-color: gray;
}

.bs-card .card-body .nse-bse-radio label>input[type="radio"]:checked+*::before {
  background: radial-gradient(#34c758 0%, #34c758 40%, transparent 50%, transparent);
  border-color: #34c758;
}

.bs-card .card-body .nse-bse-radio.S label>input[type="radio"]:checked+*::before {
  background: radial-gradient(#fe3c30 0%, #fe3c30 40%, transparent 50%, transparent);
  border-color: #fe3c30;
}

.bs-card .card-body .nse-bse-radio span {
  cursor: pointer;
  font-size: 14px;
}

.smalllabel {
  font-size: 12px;
}

.textgreen {
  color: #34C758;
}

.textred {
  color: #FE3C30;
}

.paylater-wrapper {
  background: rgba(52, 199, 88, 0.2);
  padding: 10px 16px 0px;
}

.eatm-wrapper {
  background: rgba(254, 60, 48, 0.2);
  padding: 10px 16px 0px;
}

.bs-card .card-footer {
  padding: 0;
}

.bs-card .card-footer .margin-limit-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: rgba(52, 199, 88, 0.12);
  padding: 6px 16px;
}

.bs-card .card-footer .margin-limit-wrapper.S {
  background: rgba(254, 60, 48, 0.12);
}

.bs-card .card-footer .margin-limit-wrapper .title {
  font-size: 11px;
  line-height: 21px;
  color: #353535;
}

.bs-card .card-footer .margin-limit-wrapper .amt {
  /*  font-weight: 500;*/
  font-weight: 700;
  line-height: 24px;
  color: #353535;
}

.bs-card .card-footer .btn-buy {
  width: 100%;
  background-color: #34c758;
  color: #ffffff;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.bs-card .card-footer .btn-buy.S {
  background-color: #fe3c30;
}

/* Buy Sell Elements */
.share-details {
  box-shadow: 0px 5px 40px 2px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 360px;
}

.share-details .detail {
  padding: 16px;
}

.share-details .detail-row1 .back-div {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: var(--text2);
}

.share-details .detail-row2 {
  margin-top: 20px;
}

.share-details .detail-row3 {
  accent-color: green;
  border-bottom: 1px solid #DCDCDC;
  padding-bottom: 17px;
}

.share-details .detail-row3 .form-check-label-1 {
  margin-left: 8px;
}

.share-details .detail-row4 {
  margin-top: 20px;
}

.share-btn-ul {
  background: #ECECED;
  text-align: center;
  justify-content: space-between;
  color: var(--text2);
  border-radius: 8px;
  padding: 4px;

}

.share-btn-ul .share-tab-btn {
  font-size: 14px;
  color: var(--text1);
}
/*Scroll*/
.hidden-content {
  max-height: 272px;
  overflow: auto;
  min-height: 190px;
}

.mdhidden-content {
  /*max-height:482px;*/
  max-height: calc(100% - 61px);
  overflow: scroll;
}

.hidden-content::-webkit-scrollbar,
.mdhidden-content::-webkit-scrollbar {
  width: 5px;
}

.hidden-content::-webkit-scrollbar-thumb,
.mdhidden-content::-webkit-scrollbar-thumb {
  background-color: #f5f6f7;
  border: 1px solid #dcdcdc;
  border-radius: 18px;
  margin-left: 10px;
}

.main-wrapper {
  display: flex;
  flex-direction: row-reverse;
  position: fixed;
  bottom: 0;
  right: 0;

}

/* Counter */
.counter {
  position: relative;
}

.counter input::-webkit-inner-spin-button,
.counters input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.counter {
  border: 1px solid #DCDCDC;
  box-sizing: border-box;
  border-radius: 8px;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: var(--text1);
  text-align: center;
}

.counter input {
  border: 0px;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: var(--text1);
  text-align: center;
  padding: 10px;
  width: 75%;
}

.counter input:focus-visible {
  outline: 0px solid #ffe6cf;
  /*border:2px solid #ffe6cf;*/
}

.counter .up {
  cursor: pointer;
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 20px;
  width: 10%;
  border: 0px solid #f00;
  padding: 13px;
  text-align: center;
}

.counter .down {
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 0px;
  transform: rotate(180deg);
  font-size: 20px;
  width: 10%;
  border: 0px solid #000;
  padding: 13px;
  text-align: center;
}
.cross {
    position: absolute;
    right: 0px;
    top: -15px;
}

.extended-bs-pnl{
	width: 600px;
}

@media (max-width:767px) {

	.extended-bs-pnl{
		width: 100%;
	}
	
}

/* Newly added from stylesheet */
.second-shaded-bar {
  border-radius: 8px;
  height: 20px;
  background: linear-gradient(90deg, #26BF26 1.05%, rgba(13, 189, 8, 0.6) 31.55%, rgba(121, 244, 118, 0.4) 100%);
  transform: rotate(-180deg);
}


.green-shaded-bar {
  border-radius: 8px;
  height: 20px;
  background: linear-gradient(90deg, #26BF26 1.05%, rgba(13, 189, 8, 0.6) 56.47%, rgba(109, 237, 105, 0.55) 100%);
  transform: rotate(-180deg);
}

.switch {
  position: relative;
  display: inline-block;
  width: 108px;
  height: 32px;
  /*height: 30px;*/
}

.switch input {
  display: none;
}

.slider .fa-check {
  color: var(--black);
  position: absolute;
  left: 6px;
  /*left: 4px;*/
  margin-bottom: 0;
  font-size: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
}

.slider .fa-times {
  color: var(--black);
  position: absolute;
  font-size: 16px;
  right: 9px;
  top: 4px;
  /*top: 2px;*/
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
}

.slider {
  position: absolute;
  cursor: pointer;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #80878E;
  box-sizing: border-box;
  border-radius: 40px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 28px;
  /*  height: 27px;*/
  width: 56px;
  /*width: 52px;*/
  left: 2px;
  bottom: 0.5px;
  border-radius: 20px;
  background-color: #34C758;
  transition: 0.4s;
  top: 1px;
}

.switch input:checked+.slider .fa-times {
  display: block;
  color: var(--white);
}

.switch input:checked+.slider .fa-check {
  display: block;
}

.switch input:not(:checked)+.slider .fa-check {
    color: var(--white);
}

.switch input:checked+.slider::before {
  /*  background-color: #34C758;*/
  left: 4px;
  bottom: 1px;
  width: 47px;
}

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

.switch input:checked+.slider:before {
  -webkit-transform: translateX(54px);
  -ms-transform: translateX(54px);
  transform: translateX(54px);
}

.showMD {
  transform: scaleX(-1);
}

.showMD.active {
  transform: none;
}

.progress-bar-div {
  margin-top: 24px;
}

.progress-bar-div .bid-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
}

.progress-bar-div .tbq-div {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  color: #353535;
}

.progress-bar-div .tbq-div .tbq {
  color: #80878e;
}

.two-bar {
  height: 20px;
  display: flex;
  border-radius: 0px 12px 12px 0px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
  color: white;
}

.two-bar .red-div {
  background-color: #fe3c30;
  height: 20px;
  width: 57.4%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.two-bar .green-div {
  background-color: #34c758;
  height: 20px;
  width: 42.6%;
  display: flex;
  align-items: center;
  padding-left: 12px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.second-shaded-bar .pin {
  position: absolute;
  transform: rotate(180deg);
  left: 20%;
  top: 45%;
}

.tio-pills {
  background-color: #ececed;
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 16px;
}




@media (max-width: 768px) {
  .tio-pills {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
  }
}

.tio-pills .nav-link {
  padding: 8px;
  font-size: 14px;
  line-height: 21px;
  color: var(--text2);
}

.tio-pills .nav-link.active {
  color: var(--text1);
  -webkit-box-shadow: 0px 4px 4px rgba(174, 174, 174, 0.28);
  box-shadow: 0px 4px 4px rgba(174, 174, 174, 0.28);
  background: #ffffff;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .tio-pills .nav-link {
    width: auto;
    white-space: nowrap;
    padding: 12px 8px;
    font-size: 12px;
  }
}

.tio-tab-content {
  margin-bottom: 32px;
}

.tio-tab-content #trading-ideas-tab-content .stocks-viewAll-wrapper,
.tio-tab-content #investment-ideas-tab-content .stocks-viewAll-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tio-tab-content #trading-ideas-tab-content .stocks-viewAll-wrapper .view-all,
.tio-tab-content #investment-ideas-tab-content .stocks-viewAll-wrapper .view-all {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: var(--blue);
}

@media (max-width: 768px) {

  .tio-tab-content #trading-ideas-tab-content .research-card-row,
  .tio-tab-content #investment-ideas-tab-content .research-card-row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: auto;
  }

  .tio-tab-content #trading-ideas-tab-content .research-card-row .col,
  .tio-tab-content #investment-ideas-tab-content .research-card-row .col {
    width: 90%;
  }
}

.tio-tab-content #trading-ideas-tab-content .research-card,
.tio-tab-content #investment-ideas-tab-content .research-card {
  margin-bottom: 16px;
}

.tio-tab-content #trading-ideas-tab-content .research-card .bookmark-share-wrapper,
.tio-tab-content #investment-ideas-tab-content .research-card .bookmark-share-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.tio-tab-content #trading-ideas-tab-content .research-card .bookmark-share-wrapper .title,
.tio-tab-content #investment-ideas-tab-content .research-card .bookmark-share-wrapper .title {
  font-size: 14px;
  line-height: 21px;
  color: #353535;
}

.tio-tab-content #trading-ideas-tab-content .research-card .left .potential-profit-wrapper,
.tio-tab-content #investment-ideas-tab-content .research-card .left .potential-profit-wrapper {
  background: #eff6ff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.tio-tab-content #trading-ideas-tab-content .research-card .left .potential-profit-wrapper .percent,
.tio-tab-content #investment-ideas-tab-content .research-card .left .potential-profit-wrapper .percent {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #053d6e;
  margin-bottom: 8px;
}

.tio-tab-content #trading-ideas-tab-content .research-card .left .potential-profit-wrapper .desc,
.tio-tab-content #investment-ideas-tab-content .research-card .left .potential-profit-wrapper .desc {
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #053d6e;
}

.tio-tab-content #trading-ideas-tab-content .research-card .left .invested,
.tio-tab-content #investment-ideas-tab-content .research-card .left .invested {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}

.tio-tab-content #trading-ideas-tab-content .research-card .left .invested span,
.tio-tab-content #investment-ideas-tab-content .research-card .left .invested span {
  font-size: 12px;
  line-height: 18px;
  color: #353535;
  margin-left: 4px;
}

.tio-tab-content #trading-ideas-tab-content .research-card .right,
.tio-tab-content #investment-ideas-tab-content .research-card .right {
  margin-left: 12px;
}

.tio-tab-content #trading-ideas-tab-content .research-card .right .title,
.tio-tab-content #investment-ideas-tab-content .research-card .right .title {
  font-size: 12px;
  line-height: 18px;
  color: #80878e;
}

.tio-tab-content #trading-ideas-tab-content .research-card .right .amt,
.tio-tab-content #investment-ideas-tab-content .research-card .right .amt {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #353535;
}

.tio-tab-content #trading-ideas-tab-content .research-card .right .cmp-tp,
.tio-tab-content #investment-ideas-tab-content .research-card .right .cmp-tp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 8px;
}

.tio-tab-content #trading-ideas-tab-content .research-card .right .cmp-tp .cmp,
.tio-tab-content #investment-ideas-tab-content .research-card .right .cmp-tp .cmp {
  margin-right: 6px;
}

.tio-tab-content #trading-ideas-tab-content .research-card .right .cmp-tp .change,
.tio-tab-content #investment-ideas-tab-content .research-card .right .cmp-tp .change {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

.tio-tab-content #trading-ideas-tab-content .research-card .right .cmp-tp .change.B,
.tio-tab-content #investment-ideas-tab-content .research-card .right .cmp-tp .change.B {
  color: #fe3c30;
}

.tio-tab-content #trading-ideas-tab-content .research-card .right .cmp-tp .change.S,
.tio-tab-content #investment-ideas-tab-content .research-card .right .cmp-tp .change.S {
  color: #229b40;
}

.tio-tab-content #trading-ideas-tab-content .research-card .right .sl-report,
.tio-tab-content #investment-ideas-tab-content .research-card .right .sl-report {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}

.tio-tab-content #trading-ideas-tab-content .research-card .right .sl-report .view-report,
.tio-tab-content #investment-ideas-tab-content .research-card .right .sl-report .view-report {
  cursor: pointer;
  margin-left: 6px;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: var(--blue);
}

.tio-tab-content #trading-ideas-tab-content .research-card .right .btn-buy,
.tio-tab-content #investment-ideas-tab-content .research-card .right .btn-buy {
  border: 1px solid #34c758;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px;
  color: #34c758;
  text-align: center;
  width: 100%;
}

.tio-tab-content #trading-ideas-tab-content .research-card .card-footer,
.tio-tab-content #investment-ideas-tab-content .research-card .card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #eff6ff;
}

.tio-tab-content #trading-ideas-tab-content .research-card .card-footer .date,
.tio-tab-content #investment-ideas-tab-content .research-card .card-footer .date {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #80878e;
}

.tio-tab-content #trading-ideas-tab-content .research-card .card-footer .pick,
.tio-tab-content #investment-ideas-tab-content .research-card .card-footer .pick {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #053d6e;
}

@media (max-width: 768px) {
  .tio-tab-content #oc-portfolio-tab-content .ocp-card-row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: auto;
  }

  .tio-tab-content #oc-portfolio-tab-content .ocp-card-row .col {
    width: 90%;
  }
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card {
  margin-bottom: 16px;
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card .card-body .bookmark-share-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card .card-body .bookmark-share-wrapper .title {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #353535;
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card .card-body .bookmark-share-wrapper .bookmark-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card .card-body .desc {
  font-size: 14px;
  line-height: 21px;
  color: #80878e;
  margin-top: 8px;
  margin-bottom: 12px;
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card .card-body .category {
  margin-bottom: 12px;
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card .card-body .category .title {
  font-size: 12px;
  line-height: 18px;
  color: #80878e;
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card .card-body .category .amt {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #353535;
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card .card-body .more-invest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card .card-body .more-invest .know-more {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: var(--blue);
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card .card-body .more-invest .btn-buy {
  border: 1px solid #34c758;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px;
  color: #34c758;
  text-align: center;
  width: 60%;
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card .card-footer {
  padding: 0;
  text-align: center;
  background: #eff6ff;
}

.tio-tab-content #oc-portfolio-tab-content .ocp-card-row .ocp-card .card-footer span {
  font-size: 10px;
  line-height: 15px;
  color: var(--blue);
}

.media-pills {
  width: 68.75%;
}

.navbar {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .navbar {
    display: none;
  }
}

.navbar .logo {
  margin-right: 10px;
}

.navbar .nifty-sensex-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar .nifty-sensex-wrapper .nifty-50 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #80878e;
}

.navbar .nifty-sensex-wrapper .numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 14px;
}

.navbar .nifty-sensex-wrapper .numbers .ten-no {
  width: 16px;
  background-color: #fe3c30;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
}

.navbar .nifty-sensex-wrapper .numbers .thirty-nine-no {
  width: 48px;
  background-color: #26bf26;
  font-size: 10px;
  line-height: 15px;
  color: #ffffff;
  text-align: right;
  font-weight: 600;
}

.navbar .nifty-sensex-wrapper .numbers .one-no {
  width: 10px;
  background-color: #80878e;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
}

.navbar .nifty-sensex-wrapper .common-style {
  margin-right: 20px;
}

.navbar .nifty-sensex-wrapper .figure {
  display: block;
  text-align: right;
  font-size: 14px;
  line-height: 21px;
  font-weight: bold;
  color: #353535;
}

.navbar .nifty-sensex-wrapper .color-red {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  color: #fe3c30;
}

.navbar .nifty-sensex-wrapper .color-green {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  color: #34c758;
}

.navbar .nifty-sensex-wrapper .numbers-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 14px;
}

.navbar .nifty-sensex-wrapper .numbers-2 .fifteen-no {
  width: 30px;
  background-color: #fe3c30;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
}

.navbar .nifty-sensex-wrapper .numbers-2 .fifteen-no-1 {
  width: 30px;
  background-color: #26bf26;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
}

.navbar .search-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 471px;
}

.navbar .search-bar .search-input {
  position: relative;
  font-size: 14px;
  line-height: 21px;
  color: #80878e;
  padding: 10px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  -webkit-box-shadow: 0px 7px 16px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 7px 16px 1px rgba(0, 0, 0, 0.05);
}

.navbar .search-bar .search-input:focus {
  -webkit-box-shadow: 0px 7px 16px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 7px 16px 1px rgba(0, 0, 0, 0.05);
  outline: none;
  border: 1px solid #dcdcdc;
  border-radius: 8px 8px 0 0;
}

.navbar .search-bar .search-icon {
  position: absolute;
  right: 10px;
  top: 9px;
}

.navbar .search-bar .search-bar-details {
  position: absolute;
  top: 43px;
  width: 100%;
  z-index: 1;
  max-height: 350px;
  overflow: auto;
  background-color: #fff;
  -webkit-box-shadow: 0px -1px 0px #f5f6f7;
  box-shadow: 0px -1px 0px #f5f6f7;
  border: 1px solid #dcdcdc;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: none;
}

.navbar .search-bar .search-bar-details::-webkit-scrollbar {
  width: 5px;
}

.navbar .search-bar .search-bar-details::-webkit-scrollbar-track {
  background-color: #dcdcdc;
}

.navbar .search-bar .search-bar-details::-webkit-scrollbar-thumb {
  background-color: #f5f6f7;
  border: 1px solid #dcdcdc;
  border-radius: 18px;
}

.navbar .search-bar .search-bar-details .search-bar-tabs {
  background-color: #fff;
  -webkit-box-shadow: 0px -1px 0px #f5f6f7;
  box-shadow: 0px -1px 0px #f5f6f7;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 9px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar .search-bar .search-bar-details .search-bar-tabs .common-tabs {
  background: #f5f6f7;
  border: 1px solid #f5f6f7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 840px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #80878e;
  padding: 6px 10px;
  margin-right: 6px;
}

.navbar .search-bar .search-bar-details .search-bar-tabs .select-options {
  background-color: #db620a;
  color: #fff;
}

.navbar .search-bar .search-bar-details .stocks-wrapper {
  padding: 10px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 0px -1px 0px #f5f6f7;
  box-shadow: 0px -1px 0px #f5f6f7;
}

.navbar .search-bar .search-bar-details .stocks-wrapper .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar .search-bar .search-bar-details .stocks-wrapper .left .stocks-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar .search-bar .search-bar-details .stocks-wrapper .left .stocks-details .common-text {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  color: #353535;
  margin-right: 4px;
  margin-left: 9px;
}

.navbar .search-bar .search-bar-details .stocks-wrapper .left .stocks-details .common-text .stocks {
  background: #f5f6f7;
  border: 1px solid #f5f6f7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 840px;
  font-size: 10px;
  line-height: 15px;
  font-weight: 400;
  color: #80878e;
  padding: 2px 6px;
}

.navbar .search-bar .search-bar-details .stocks-wrapper .left .stocks-details .sub-text {
  font-size: 10px;
  line-height: 15px;
  font-weight: 400;
  color: #80878e;
  margin-left: 9px;
}

.navbar .search-bar .search-bar-details .stocks-wrapper .right .common-figure {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #353535;
  text-align: right;
}

.navbar .search-bar .search-bar-details .stocks-wrapper .right .common-sub-text {
  font-size: 10px;
  line-height: 15px;
  font-weight: 400;
  color: #34c758;
  text-align: right;
}

.navbar .search-bar .search-bar-details .stocks-wrapper .right .common-sub-text-1 {
  font-size: 10px;
  line-height: 15px;
  font-weight: 400;
  color: #fe3c30;
  text-align: right;
}

.navbar .search-bar .search-bar-details .product-not-found-wrapper {
  background-color: #fff;
  -webkit-box-shadow: 0px -1px 0px #f5f6f7;
  box-shadow: 0px -1px 0px #f5f6f7;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 34px 0 21px 0;
  text-align: center;
}

.navbar .search-bar .search-bar-details .product-not-found-wrapper .error-details {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #80878e;
  margin-top: 13px;
}

.navbar .utilities-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar .utilities-wrapper .common-margin {
  margin-right: 10px;
}

.navbar .utilities-wrapper .dropdown .btn {
  padding: 0;
}

.navbar .utilities-wrapper .user-name {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: #1a1d24;
}

.navbar .utilities-wrapper .account-details {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #80878e;
}

@media (max-width: 600px) {
.rotate-sm-90{
	   transform: rotateZ(90deg);
}
}


#followUsModal .modal-content {
  background: #f5f6f7;
}

#followUsModal .modal-content .modal-body {
  padding: 24px;
}

#followUsModal .modal-content .modal-body .modal-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #353535;
}

#followUsModal .modal-content .modal-body .desc {
  line-height: 24px;
  color: #353535;
  margin-bottom: 8px;
}

#followUsModal .modal-content .modal-body .turn-on-wrapper {
  background: #ffffff;
  padding: 12px 24px;
  margin: 0 -24px 20px;
}

#followUsModal .modal-content .modal-body .turn-on-wrapper .title {
  font-size: 14px;
  line-height: 21px;
  color: #80878e;
  margin-bottom: 10px;
}

#followUsModal .modal-content .modal-body .turn-on-wrapper .switch-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  #followUsModal .modal-content .modal-body .turn-on-wrapper .switch-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#followUsModal .modal-content .modal-body .turn-on-wrapper .switch-wrapper .form-switch {
  margin-bottom: 10px;
}

#followUsModal .modal-content .modal-body .turn-on-wrapper .switch-wrapper .form-switch .form-check-input {
  height: 20px;
  border: 1px solid #353535;
  border-radius: 43px;
  background-image: url(../assets/images/switch-ball.svg);
  background-size: auto;
}

#followUsModal .modal-content .modal-body .turn-on-wrapper .switch-wrapper .form-switch .form-check-input:checked {
  background-color: transparent;
}

#followUsModal .modal-content .modal-body .turn-on-wrapper .switch-wrapper .form-switch .form-check-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#followUsModal .modal-content .modal-body .turn-on-wrapper .switch-wrapper .form-switch .form-check-label {
  line-height: 24px;
  color: #353535;
  cursor: pointer;
}

#followUsModal .modal-content .modal-body .alert-checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#followUsModal .modal-content .modal-body .alert-checkbox-wrapper .form-check {
  margin-bottom: 16px;
}

#followUsModal .modal-content .modal-body .alert-checkbox-wrapper .form-check .form-check-input {
  height: 30px;
  width: 30px;
  background-color: transparent;
  border: 1.5px solid #c4c8cd;
}

#followUsModal .modal-content .modal-body .alert-checkbox-wrapper .form-check .form-check-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#followUsModal .modal-content .modal-body .alert-checkbox-wrapper .form-check .form-check-input:checked {
  background-image: url(../assets/images/tick.svg);
  background-size: auto;
  border: 1.5px solid #db620a;
}

#followUsModal .modal-content .modal-body .alert-checkbox-wrapper .form-check .form-check-label {
  font-size: 14px;
  line-height: 21px;
  color: #000000;
  margin: 10px 0 0 16px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #followUsModal .modal-content .modal-body .alert-checkbox-wrapper .form-check .form-check-label {
    margin: 10px 0 0 6px;
  }
}

#followUsModal .modal-content .modal-body .btn-done {
  background: #db620a;
  border-radius: 8px;
  color: #fff;
  width: 100%;
  margin-top: 8px;
}

#followUsModal .modal-content .modal-body .btn-done:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}