@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('customClasses.css');

*{
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* p , li , span
{
    font-size: 14px !important;
} */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #fff; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--logoRed); 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }

/* header style start */
header
{
    border-bottom: 1px solid var(--logoRed);
}
header::before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--logoRed);
    position: absolute;
    clip-path: polygon(0% 100%, 0 95%, 73% 98%, 91% 0, 72% 100%, 95% 6%, 77% 82%, 100% 17%, 72% 100%, 100% 37%, 73% 100%, 54% 100%);
}
/* header style end */

/* sidebar style start */
section.sidebar
{
    width: 90%; /*old value was 100%*/
    height: 100%;
    background-color: var(--logoRed);
    overflow-x: hidden;
}

section.sidebar ul li
{
    list-style: none;
    padding: 15px 0;
    border-bottom: 1px solid white;
}
section.sidebar ul li a
{
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}
section.sidebar ul li a span
{
    font-size: 10px;
    margin: 0 10px;
}
.modules_dropdown
{
    display: none;
    background-color: black;
}
.modules_dropdown li
{
    border-bottom: none;
}
.modules_dropdown li:hover
{
    background-color: var(--logoRed);
}
.modules_dropdown li a
{
    font-size: 12px;
}
.expandLess
{
    display: none;
}
section.sidebar .mainContainer
{
    overflow-y: scroll;
    height: 100%;
}
a:hover
{
    color: white;
}
/* sidebar style end */

/* iframe
{
    width: 100%;
    height: 500px;
} */
.expandSection
{
    background: transparent;
    border: none;
    color: var(--logoRed);
    position: absolute;
    right: 30px;
    top: 23px;
    z-index: 1;
}
button.expandSection:hover:before {
    content: 'expand / shrink';
    font-family: sans-serif;
    position: absolute;
    font-size: 10px;
    background: black;
    color: white;
    padding: 8px;
    left: -28px;
    top: -27px;
}

section.moduleSteps
{
    background: var(--logoRed);
    align-items: center;
    padding: 30px 40px;
    border-radius: 100px;
    font-family: 'Righteous', cursive !important;
    box-shadow: inset 0 0 70px -10px;

}
section.moduleSteps.d-flex div {
    width: 100%;
    text-align: center;
    font-size: 50px;
    position: relative;
    border-inline: 1px solid;
    border-color: #8d0c0d;
}
section.moduleSteps.d-flex div:nth-of-type(1),
section.moduleSteps.d-flex div:nth-of-type(8)
{
    border-inline: none;
}
section.moduleSteps.d-flex div img {
    margin-top: -20px;
    width: 110px !important;
    filter: drop-shadow(2px 4px 6px black);
}
section.moduleSteps.d-flex div a {
    text-decoration: none;
    color: #fff200;
    font-family: 'Righteous', cursive;
    text-shadow: 10px 10px 15px #000;
}
section.moduleSteps.d-flex div a .customTooltip
{
    display: none;
}
section.moduleSteps.d-flex div a:hover .customTooltip {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.85);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 5px #fff200;
    animation-name: moduleSteps;
    animation-duration: .5s; 
    animation-timing-function: ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding: 5px;
    font-family: 'Righteous', cursive;
    z-index: 1;
}
@keyframes moduleSteps {
    from{opacity: 0;}
    to{opacity: 1;}
    
}
/*.expandBox{display: none;}*/
.expandBox input
{
    display: inline !important;
}

.automaticallySavedNote{
    background: green;
    color: #fff;
    font-size: 12px;
    padding: 0 20px;
    border-radius: 20px;
    height: 36px;
    line-height: 36px;
    margin-right: 10px;
}

.kd_redButton.save
{
    border-top-left-radius: 20px;
}
.showExtraOptions
{
    height: 36px;
    transition: .5s;
    transition-delay: .7s;
}
.showExtraOptions.openPop
{
    height: 200px;
    transition: .5s;
    
}

.saveButtons div section.extraContent
{
    width: 0px;
    height: 200px;
    background: #f1f3f4c0;
    position: absolute;
    right: 42px;
    z-index: -1;
    border-top-left-radius: 50px;
    transition: .5s;
    opacity: 0;
    box-shadow: inset 0 0 5px;
}
.saveButtons div section.extraContent.open
{
    width: 350px;
    transition: .5s;
    opacity: 1;
    transition-delay: .5s;
}
.saveButtons input,.saveButtons span
{
    box-shadow: 0 0 10px inset black;
    border: none;
    padding: 9px 20px;
}
table tr td,
table tr th {
    padding: 20px 10px !important;
}

.worksheet1 table th[scope=col]
{
    background-color: var(--logoRed);
    color: white;
}
.worksheet1 table th[scope=row]
{
    text-align: left !important;
}
.worksheet1 p.num_balls {
    background: var(--logoRed);
    color: white;
    padding: 20px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px !important;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 0.6;
}
input[type="radio"] {
    filter: sepia(1) drop-shadow(0px 0px 3px gray);
    height: 15px;
    width: 15px;
    margin: 0 10px;
}
.geniusTable table td .optionBox {
    height: 190px;
    overflow-y: scroll;
}
.geniusTable table td h4
{
    background-color: var(--logoRed);
    color: white;
    padding:10px 5px;
    font-size: 14px;
    font-weight: bold;
}
input[readonly] {
    background: lightgoldenrodyellow;
}
.arrow {
    width: 100%;
    height: 5px;
    position: relative;
    border-radius: 35px;
    display: block;
}
.arrow::after {
    content: '>';
    position: absolute;
    right: -6px;
    top: -19px;
    font-size: 30px;
    font-weight: bold;
}
.arrow.green
{
    /* background-color: green; */
    background: linear-gradient(to left , green, transparent);
}
.arrow.green::after
{
    color: green;
}
.arrow.red
{
    /* background-color: red; */
    background: linear-gradient(to left , red, transparent);
}
.arrow.red::after
{
    color: red;
}
.moduleInstructions h2
{
    color:#b20404;
    font-weight:bold;
    text-align:center;
}
.moduleInstructions ul
{
    text-align:center;
    padding:0;
}
.moduleInstructions ul li
{
    list-style-type:none;
}
.moduleInstructions ul li a
{
    color:black;
    font-size:20px;
    font-weight:bold;
}
.moduleInstructions ul li a span
{
    color:#b20404
}

.vision-group .vision_num
{
    width: 4%;
    background: #b20404;
    color: white;
    font-weight: bold;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vision-group .vision_content{
width: 96%;
padding: 10px;
}

.card {
    box-shadow: 0px 0px 18px -10px;
    border-radius: 20px;
}

.col-xxl-10.col-xl-9.col-md-9
{
    padding-left:0 !important
}

.saveButtons input
{
    margin: 0 !important;
    border: 0 !important;
    height: auto !important;
}
.saveButtons br
{
    display: block !important;
}
input[type="text"] {
    border: none !important;
    border-bottom: 1px solid gray !important;
}
input[type="text"].borderRedInp{
    border-bottom: 2px solid red !important;
    box-shadow: none !important;
}

.formInfo section input.borderRedInp,.formInfo section textarea.borderRedInp{
  border-color: red;
  /* box-shadow: 0px 0px 5px 0 red; */
}

.expandText
{
    font-size: 12px;
    display: block;
    position: absolute;
    right: 35px;
    top: 8px;
}
.expandSection:focus {
    outline: none;
}

marquee.customMarquee {
    color: white;
    position: absolute;
    top: 50%;
    width: 77.5vw;
    right: 0;
    transform: translateY(-50%);
    background: black;
}
.single-affirmation{
    position: relative;
    overflow: hidden;
}
.single-affirmation:hover{
    color: #fff;
    transition: .5s;
}
.single-affirmation::before {
    content: '';
    background: #b20404;
    width: 100%;
    height: calc(100% - 65px);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: .5s;
    opacity: 0;
}
.single-affirmation:hover:before {
    animation: bounceTop .9s both;
}
.single-affirmation:hover:after {
    content: '';
    background: #f7f7f7;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: -1;
}
@keyframes bounceTopq {
    0%{height: 0%;}
    15%{height: 100%;}
    20%{height: 90%;}
    25%{height: 68%;}
    100%{height: 68%;}
}
 @-webkit-keyframes bounceTop {
    0% {
      -webkit-transform: translateY(45px);
              transform: translateY(45px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 1;
    }
    24% {
      opacity: 1;
    }
    40% {
      -webkit-transform: translateY(24px);
              transform: translateY(24px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    65% {
      -webkit-transform: translateY(12px);
              transform: translateY(12px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    82% {
      -webkit-transform: translateY(6px);
              transform: translateY(6px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    93% {
      -webkit-transform: translateY(4px);
              transform: translateY(4px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    25%,
    55%,
    75%,
    87% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
  }
  @keyframes bounce-bottom {
    0% {
      -webkit-transform: translateY(45px);
              transform: translateY(45px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 1;
    }
    24% {
      opacity: 1;
    }
    40% {
      -webkit-transform: translateY(24px);
              transform: translateY(24px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    65% {
      -webkit-transform: translateY(12px);
              transform: translateY(12px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    82% {
      -webkit-transform: translateY(6px);
              transform: translateY(6px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    93% {
      -webkit-transform: translateY(4px);
              transform: translateY(4px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    25%,
    55%,
    75%,
    87% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
  }
  .gifImage {
    background-image: url(../../img/gifImage.gif);
    width: 160px;
    height: 170px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 200px;
}