/**********Calculator Style sheet**********/



@charset "UTF-8";
.trg-calculator {
    margin: 0;
    font-family: futura-lt-w01-light,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #001524;
    text-align: left;
    background-color: #fff;
    display: block;
    width: 90%;
    margin: 0 auto;
}
.trg-calculator *{
    font-family: futura-lt-w01-light,sans-serif;
    box-sizing: border-box;
    
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-12,
.col-sm-4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
@media (min-width: 768px) {
    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
}
.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        transition: none;
    }
}
.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    /* -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); */
}
.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control:disabled {
    background-color: #e9ecef;
    opacity: 1;
}
.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
.calc-table .input-group{
    flex-wrap: unset;
}
.calc-table .input-group .input-group-text{
    padding: 0 6px;
    font-size: 13px;
}
.input-group > .form-control {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
.input-group > .form-control:focus {
    z-index: 3;
}
.input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group-append ,
.input-group-prepend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.input-group-append .input-group-text + .input-group-text {
    margin-left: -1px;
}
.input-group-append {
    margin-left: -1px;
}
.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0;
}
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.d-none {
    display: none !important;
}
.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
@media (min-width: 768px) {
    .d-sm-none {
        display: none !important;
    }
    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

.mb-3 {
    margin-bottom: 1rem !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}


.trg-calculator__header {
    font-size: 38px;
    font-weight: bold;
    line-height: 1.6;
    margin: 35px 0 20px;
    text-align: center;
    color: #180b3c;
}

@media (max-width: 767.98px) {
    .trg-calculator__header {
        font-size: 26px;
    }
}

.calculator-form {
    background: rgb(232, 232, 232);
    padding: 15px;
    margin: 0;
}
.calculator-form .row > [class*="col"] {
    padding: 0 10px;
}
@media (max-width: 767.98px) {
    .calculator-form .row > [class*="col"] {
        padding: 0 6px;
    }
}
.calculator-form label {
    display: block;
    color: #001524;
    font-weight: 500;
    font-weight: 16px;
}
@media (max-width: 767.98px) {
    .calculator-form label {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
}

.calculator-form input,
.calculator-form select {
    font-size: 16px;
    height: 45px;
}
.calc-table input,
.calc-table select{
    height: 30px;
    border-radius: 3px;
    padding: 5px;
    width: 100%;
    font-size: 16px;
}
.table-total-sec{
    width: 55%;
    margin: 0 auto;
}
.total-row{
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    
}
.total-row .total-col{
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.calculator-form .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}


.calculator-form .input-group-text {
    background-color: #0693e3;
    border-left: 0;
    color: #fff;
    font-size: 13px;
}
.calculator-form .input-group .input-group-prepend .input-group-text{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.calculator-form .input-group .input-group-prepend + .form-control {
    border: 1px solid #ced4da;
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.calculator-form .calc-table .calc-input{
    border-color: #0693e3;
}
.calculator-form .calc-table .input-group .input-group-prepend + .form-control {
    border: 1px solid #0693e3;
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.trg-calc-bottom{
    border: 1px solid #EEEEEE;
    border-top: 0;
    padding-top: 25px;
}
.chart-section{
    margin-bottom: 10px;
    display: flex;
    

}
.chart-container{
    position: relative;
}
.trg-chart-title{
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    margin: 0;
}
.barChart-container:before{
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    /* right: 5%; */
    /* width: 90%; */
    height: 100%;
    /* background-image: linear-gradient(to right, transparent, rgb(48,49,51), transparent); */
    border-right: 1px solid gray;
    z-index: 1;
}
.barChart-container:after{
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 100%;
    width: 14px;
    margin-left: -7px;
    height: 12px;
    background-color: white;
    border-top: 1px solid rgb(48,49,51);
    border-bottom: 1px solid rgb(48,49,51);
}

.barChart-container{
    width: 50%;
    padding-right: 20px;
    position: relative;
    margin: 20px auto;
    height: 450px;
}
.columnChart3d-container{
    width: 50%;
    padding-left: 20px;
    margin: 20px auto;
    height: 450px;
}
.calc-sub-heading{
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
    color: #0693e3;
}
.calc-table-area{
    margin: 20px 0;
    width: 100%;
}
.calc-table-area .table-heading{
    font-weight: bold;
    font-size: 20px;
    color: #0693e3;
    margin: 5px 0;
}
.calc-table{
    background: #fff;
    margin-bottom: 20px;
    padding: 12px;
    width: 100%;
    border-collapse: separate;
	margin-top: 0 !important;
}
.calc-table tr:nth-child(even){
    background-color:#f6f6f6;
}
.bordered-tb tr td{
    border: none !important;
    /* border-top: 1px solid gray; */
    /* border-left: 1px solid gray; */
}
.bold-row td{
    font-weight: bold;
}
.bordered-tb tr td:last-child{
    /* border-right: 1px solid gray; */
}
.bordered-tb tr:last-child td{
    /* border-bottom: 1px solid gray; */
}
.calc-table-row{
    display: flex;
}
.calc-table tr td{
    text-align: center;
    width: 20%;
    padding: 3px 3px;
    box-sizing: border-box;
    font-size: 16px;
}
.calc-table tr td:first-child{
    text-align: left;
    width: 40%;
}
.calc-table tr td{
    width: 12%;
}
.calc-table tr td span{
    font-weight: bold;
    font-size: 18px;
}
.calc-table tr td:first-child{
    width: 28%;
}
.text-indent{
    text-indent: 20px;
}
.calc-table tr .row-heading{
    width: 20%;
    text-align: left;
    font-weight: bold;
    color: #fff;
}
.calc-table tr.row-head{
    font-weight: bold;
    background-color: #0693e3;
    color: #fff;
}
.calc-table tr th{
    font-size: 20px;
    padding: 3px 0;
    color: #0693e3;
    text-align: center;
}
.highcharts-credits{
    display: none !important;
}
.trg-print-generate-section{
    border: 1px solid gray;
    padding: 10px;
}
.pdf-generate-info{
    text-align: center;
    font-size: 22px;
    margin: 15px;
}
.trg-print-btn-contianer{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.print-btn{
    width: 300px;
    margin: 10px auto;
    font-size: 20px;
    font-weight: bold;
    border:none;
    cursor: pointer;
    background-color:#0693e3;
    color: #fff;
    padding: 10px 15px;
    
}

.print-btn:last-child span{
  color: yellow;
}
.calc-disclaimer{
    font-size: 15px;
    margin-top: 10px;
}

.ui-datepicker-trigger{
    position: absolute;
    left: 100%;
    top: 50%;
    margin-top: -12px;
    margin-left: -35px;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    background: #f5f5f5 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
    
}




/* ///////////////////// */
.rhw-tooltip {
    position: relative;
    display: inline;
    
  }
  .rhw-tooltip-icon{
    font-family: futura-lt-w01-light,sans-serif;
    width: 16px;
    height: 16px;
    line-height: 15px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    font-size: 14px !important;
    margin-left: 3px;
    padding-right: 0.5px;
    margin-left: 3px;
    background: #cfcfd4;
    color: #000;
    /* content:'i' */
  }
 
  
  
  .rhw-tooltip .rhw-tooltiptext {
    visibility: hidden;
    display: none;
    width: auto;
    min-width: 150px;
    background-color: #fff;
    box-shadow: 0 0 3px grey;
    color: #000;
    font-weight: normal;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 5;
    transition: 0.5s;
    font-size: 13px !important;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content; 
    /* To adjust the height as well */ 
    height: fit-content;
    width: intrinsic;
  }
  
  .rhw-tooltip-icon:hover+.rhw-tooltiptext {
    visibility: visible;
    display: block;
  }
  .rhw-tooltip-icon:hover{
      background-color: #0693e3;
      color: #fff;
  }
  /* .rhw-tooltiptext:hover{
    visibility: hidden !important;
  } */

  /* ////////////////////////// */
  @media print {
    .ignore-pdf {
       visibility: hidden;
    }
 }
.print-action.trg-calculator{
    /* margin: 0;
    width: 100%; */
}
.print-action .print-hidden{
    display: none;
    width: 0!important;
    height: 0 !important;
}
.print-action .trg-calculator__header{
    /* font-size: 18px;
    margin: 0; */
}
.print-action .calculator-form {
    /* padding: 15px; */
}
.print-action .calculator-form label {
    /* margin-bottom: 2px;
    font-weight: 13px; */
}
.print-action .calc-sub-heading,
.print-action .table-heading{
    /* margin: 0;
    font-size: 15px; */
}
.print-action .mb-3{
    /* margin: 0 !important; */
}
.trg-calc-bottom{
    /* padding-top: 0; */
}
.print-action .calculator-form input,
.print-action .calculator-form .input-group-text{
    /* height: 30px;
    font-size: 15px; */
}
.print-action .calc-table-area{
    /* margin: 10px 0 0 0; */
}

.print-action .chart-section {
    /* height: 250px; */
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.print-action .columnChart3d-container{
    width: 100%;
}
.print-action .barChart-container{
        /* width: 100%; */
        /* height: 260px; */
        /* padding: 20px 0;
        margin: 0 auto; */
}
.print-action .trg-chart-title{
    /* font-size: 10px;
    margin: 5px 0 0 0; */
}
.print-action .calc-table .calc-table-row div {
    /* font-size: 10px; */
}
.print-action .columnChart3d-container{
    display: flex;
}
.print-action .ad-spend-res-container{
    width: 100%;
}
.print-action .col-sm-4 {
    /* -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 20%;
    max-width: 20%; */
}

.print-action .barChart-container:before {
    content: unset;
}
.print-action .barChart-container:after {
    content: unset;
}

.print-action tr th:nth-child(2),
.print-action tr th:nth-child(3),
.print-action tr th:nth-child(4),
.print-action tr td:nth-child(2),
.print-action tr td:nth-child(3),
.print-action tr td:nth-child(4){
    display: none;
}
#all-products-pdf-area.print-action .table-total-sec{
    display: none;
}
@media screen and (max-width: 768px){
    .table-total-sec{
        width: 100%;
    }
    .total-row .total-col{
        font-size: 14px;
    }
    
    
    .chart-section {
        flex-direction: column;
    }
    .columnChart3d-container,
    .barChart-container{
        width: 100%;
        padding: 20px 0;
    }
    .calc-table .calc-table-row div {
        font-size: 10px;
    }
    .barChart-container:before {
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        height: 0;
        border-top: 1px solid gray;
        margin-top: 20px;
    }
    .barChart-container:after {
        top: 100%;
        left: 50%;
        width: 14px;
        margin-top: 14px;
        height: 12px;
        border: none;
        border-left: 1px solid rgb(48,49,51);
        border-right: 1px solid rgb(48,49,51);
    }
        
}

/* loader styles************** */

.lds-default {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-default div {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #0693e3;
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
  }
  .lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 37px;
    left: 66px;
  }
  .lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 22px;
    left: 62px;
  }
  .lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 11px;
    left: 52px;
  }
  .lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 7px;
    left: 37px;
  }
  .lds-default div:nth-child(5) {
    animation-delay: -0.4s;
    top: 11px;
    left: 22px;
  }
  .lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 22px;
    left: 11px;
  }
  .lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 37px;
    left: 7px;
  }
  .lds-default div:nth-child(8) {
    animation-delay: -0.7s;
    top: 52px;
    left: 11px;
  }
  .lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 62px;
    left: 22px;
  }
  .lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 66px;
    left: 37px;
  }
  .lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 62px;
    left: 52px;
  }
  .lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 52px;
    left: 62px;
  }
  @keyframes lds-default {
    0%, 20%, 80%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
  }
  .loader-container{
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: rgba(255, 255, 255);
      z-index: 100;
      /* padding: 20% 0%; */
      
      display: none;
  }



/* ///////////////// */
.ad-spend-res-container{
    display: flex;
    justify-content: space-between;
    margin: 20px  20px;

}
.ad-spend-res-rows{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    border-bottom: 1px solid #eceaea;
    padding-bottom: 10px;
}


.ad-spend-res-rows{
    padding: 20px 0;
    margin: 0;
    width: 100%;
    /* border: 1px solid #eceaea; */
    /* padding: 8px 5px; */
    border-radius: 0px;
    flex-direction: column;
    
    background: #0693e3;
}
.three-columns-results .ad-spend-res-rows{
    margin-right: 20px;
}
.three-columns-results .ad-spend-res-rows:last-child{
    margin-right: 0;
}
.ad-spend-res-rows label{
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}
.ad-spend-res span{
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
.ad-spend-res{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* input append/prepend group styles */
@media screen and (max-width: 786px){

    .ad-spend-res-container{
        flex-direction: column;
        margin: 0;
    }
    .ad-spend-res-rows{
        width: 100%;
        margin: 10px 0;
    }
}







/* ///////accordion ///////////// */
input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
.row {
    display: flex;
  }
  .row .col {
    flex: 1;
  }
 
  
  /* Accordion styles */
  .tabs {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
  }
  
  .tab {
    width: 100%;
    color: white;
    overflow: hidden;
  }
  .tab-label {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    background: #2c3e50;
    font-weight: bold;
    cursor: pointer;
    /* Icon */
  }
  .tab-label:hover {
    background: #1a252f;
  }
  .tab-label::after {
    content: "❯";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all 0.35s;
  }
  .tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    background: white;
    transition: all 0.35s;
  }
  .tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer;
  }
  .tab-close:hover {
    background: #1a252f;
  }
  
  input:checked + .tab-label {
    background: #1a252f;
  }
  input:checked + .tab-label::after {
    transform: rotate(90deg);
  }
  input:checked ~ .tab-content {
    max-height: 100vh;
    padding: 1em;
  }



  /* //////////////// */

.symbol-sec{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.symbol-sec .inputGroup{
	/* margin  */
	
}
.symbol-sec label{
	/* padding-left: 0 !important; */
	padding: 0 15px!important;
}
.symbol-sec label::after{
	display: none !important;
	
}
.symbol-sec .calc-row{
	margin-bottom: 0 !important;
    display: flex;
    

}
.orange-bg{
    background-color: orange !important;
}

/* //////////////// */
.inputGroup {
	background-color: #fff;
	display: block;
	margin: 0;
    padding: 5px;
	position: relative;
	/* padding: 0 16px; */
	/* max-width: 550px; */
	/* margin: 50px auto; */
	font-size: 18px;
	font-weight: 600;
	line-height: 36px;
	box-sizing: border-box;
	width: 100%;
    width: 100px;
  }
  .inputGroup *, 
  .inputGroup *::before, 
  .inputGroup *::after {
	box-sizing: inherit;
  }
  .inputGroup label {
	/* padding: 5px 10px; */
	width: 100%;
	display: flex;
	text-align: left;
	color: #3c454c;
	cursor: pointer;
	position: relative;
	z-index: 2;
	transition: color 200ms ease-in;
	overflow: hidden;
	font-size: 16px;
	padding-left: 35px;
	border-radius: 4px;
    background: #eee;
  }
  /* .inputGroup label:hover {
      background: rgb(174, 190, 166)!important;
      transition: .2s;
  }
  .inputGroup label:hover :after{
    content: "\2713";
    display: none;
  } */
  .inputGroup label:before {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	content: '';
	background-color: #0693e3;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale3d(1, 1, 1);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	z-index: -1;
  }
  .inputGroup label:after {
	width: 20px;
    height: 20px;
	content: "";
	border: 1px solid #d1d7dc;
	background-color: #fff;
	/* background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E "); */
	/* background-repeat: no-repeat;
	background-position: 2px 3px; */
	border-radius: 50%;
	z-index: 2;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	transition: all 200ms ease-in;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
  }
  .inputGroup input:checked ~ label {
	color: #fff;
  }
  .inputGroup input:checked ~ label:before {
	/* transform: translate(-50%, -50%) scale3d(56, 56, 1); */
	transform: translate(-50%, -50%) scale3d(80, 50, 1);
	opacity: 1;
  }
  .inputGroup input:checked ~ label:after {
	background-color: #028181;
	border-color: #028181;
	content: "\2713";
  }
  .inputGroup input {
	width: 32px;
	height: 32px;
	order: 1;
	z-index: 2;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	visibility: hidden;
  }



  /* ///////////////////////////////////////////////////////////// */
/* 
  You want a simple and fancy tooltip?
  Just copy all [data-tooltip] blocks:
*/
[data-tooltip] {
    position: relative;
    /* z-index: 1; */
  }
  
  /* Positioning and visibility settings of the tooltip */
  [data-tooltip]:before,
  [data-tooltip]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 50%;
    bottom: calc(100% + 5px); /* 5px is the size of the arrow */
    pointer-events: none;
    transition: 0.2s;
    z-index: 10000;
    /* will-change: transform; */
  }
  
  /* The actual tooltip with a dynamic width */
  [data-tooltip]:before {
    content: attr(data-tooltip);
    padding: 10px 18px;
    min-width: 50px;
    max-width: 350px;
    width: max-content;
    width: -moz-max-content;
    border-radius: 6px;
    font-size: 14px;
    background-color: rgba(59, 72, 80, 0.9);
    background-image: linear-gradient(30deg,
      rgba(59, 72, 80, 0.44),
      rgba(59, 68, 75, 0.44),
      rgba(60, 82, 88, 0.44));
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
    white-space: pre-wrap;
    transform: translate(-50%, -5px) scale(0.5);
  }
  
  /* Tooltip arrow */
  [data-tooltip]:after {
    content: '';
    border-style: solid;
    border-width: 5px 5px 0px 5px; /* CSS triangle */
    border-color: rgba(55, 64, 70, 0.9) transparent transparent transparent;
    transition-duration: 0s; /* If the mouse leaves the element, 
                                the transition effects for the 
                                tooltip arrow are "turned off" */
    transform-origin: top;   /* Orientation setting for the
                                slide-down effect */
    transform: translateX(-50%) scaleY(0);
  }
  
  /* Tooltip becomes visible at hover */
  [data-tooltip]:hover:before,
  [data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
  }
  /* Scales from 0.5 to 1 -> grow effect */
  [data-tooltip]:hover:before {
    transition-delay: 0.3s;
    transform: translate(-50%, -5px) scale(1);
  }
  /* 
    Arrow slide down effect only on mouseenter (NOT on mouseleave)
  */
  [data-tooltip]:hover:after {
    transition-delay: 0.5s; /* Starting after the grow effect */
    transition-duration: 0.2s;
    transform: translateX(-50%) scaleY(1);
  }
  /*
    That's it.
  */
  
  
  
  
  
  
  /*
    If you want some adjustability
    here are some orientation settings you can use:
  */
  
  /* LEFT */
  /* Tooltip + arrow */
  [data-tooltip-location="left"]:before,
  [data-tooltip-location="left"]:after {
    left: auto;
    right: calc(100% + 5px);
    bottom: 50%;
  }
  
  /* Tooltip */
  [data-tooltip-location="left"]:before {
    transform: translate(-5px, 50%) scale(0.5);
  }
  [data-tooltip-location="left"]:hover:before {
    transform: translate(-5px, 50%) scale(1);
  }
  
  /* Arrow */
  [data-tooltip-location="left"]:after {
    border-width: 5px 0px 5px 5px;
    border-color: transparent transparent transparent rgba(55, 64, 70, 0.9);
    transform-origin: left;
    transform: translateY(50%) scaleX(0);
  }
  [data-tooltip-location="left"]:hover:after {
    transform: translateY(50%) scaleX(1);
  }
  
  
  
  /* RIGHT */
  [data-tooltip-location="right"]:before,
  [data-tooltip-location="right"]:after {
    left: calc(100% + 5px);
    bottom: 50%;
  }
  
  [data-tooltip-location="right"]:before {
    transform: translate(5px, 50%) scale(0.5);
  }
  [data-tooltip-location="right"]:hover:before {
    transform: translate(5px, 50%) scale(1);
  }
  
  [data-tooltip-location="right"]:after {
    border-width: 5px 5px 5px 0px;
    border-color: transparent rgba(55, 64, 70, 0.9) transparent transparent;
    transform-origin: right;
    transform: translateY(50%) scaleX(0);
  }
  [data-tooltip-location="right"]:hover:after {
    transform: translateY(50%) scaleX(1);
  }
  
  
  
  /* BOTTOM */
  [data-tooltip-location="bottom"]:before,
  [data-tooltip-location="bottom"]:after {
    top: calc(100% + 5px);
    bottom: auto;
  }
  
  [data-tooltip-location="bottom"]:before {
    transform: translate(-50%, 5px) scale(0.5);
  }
  [data-tooltip-location="bottom"]:hover:before {
    transform: translate(-50%, 5px) scale(1);
  }
  
  [data-tooltip-location="bottom"]:after {
    border-width: 0px 5px 5px 5px;
    border-color: transparent transparent rgba(55, 64, 70, 0.9) transparent;
    transform-origin: bottom;
  }
  

  
  /* Thumbnail settings */
  @media (max-width: 750px) {
    
    [data-tooltip]:after {
      bottom: calc(100% + 3px);
    }
    [data-tooltip]:after {
      border-width: 7px 7px 0px 7px;
    }
  }
  /* ////////////////////////// */