@font-face {
  font-family: 'Union';
  src: url('../fonts/Union-Bold.eot');
  src: url('../fonts/Union-Bold.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Union-Bold.woff2') format('woff2'),
  url('../fonts/Union-Bold.woff') format('woff'),
  url('../fonts/Union-Bold.ttf') format('truetype'),
  url('../fonts/Union-Bold.svg#Union-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Union';
  src: url('../fonts/Union-Regular.eot');
  src: url('../fonts/Union-Regular.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Union-Regular.woff2') format('woff2'),
  url('../fonts/Union-Regular.woff') format('woff'),
  url('../fonts/Union-Regular.ttf') format('truetype'),
  url('../fonts/Union-Regular.svg#Union-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Garton Pro';
  src: url('../fonts/GartonPro-Bold.eot');
  src: url('../fonts/GartonPro-Bold.eot?#iefix') format('embedded-opentype'),
  url('../fonts/GartonPro-Bold.woff2') format('woff2'),
  url('../fonts/GartonPro-Bold.woff') format('woff'),
  url('../fonts/GartonPro-Bold.ttf') format('truetype'),
  url('../fonts/GartonPro-Bold.svg#GartonPro-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Garton Pro';
  src: url('../fonts/GartonPro-Regular.eot');
  src: url('../fonts/GartonPro-Regular.eot?#iefix') format('embedded-opentype'),
  url('../fonts/GartonPro-Regular.woff2') format('woff2'),
  url('../fonts/GartonPro-Regular.woff') format('woff'),
  url('../fonts/GartonPro-Regular.ttf') format('truetype'),
  url('../fonts/GartonPro-Regular.svg#GartonPro-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icon/icomoon.eot?d4xye4');
  src:  url('../fonts/icon/icomoon.eot?d4xye4#iefix') format('embedded-opentype'),
  url('../fonts/icon/icomoon.ttf?d4xye4') format('truetype'),
  url('../fonts/icon/icomoon.woff?d4xye4') format('woff'),
  url('../fonts/icon/icomoon.svg?d4xye4#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-down-arrow-svgrepo-com:before {
  content: "\e900";
}

:root {
  --blue: #3928EF;
  --white: #FFFFFF;
  --light-white: #F8FCFA;
  --gradient-one: #BA2B20;
  --gradient-two: #D65B2E;
  --gradient-three: #E79D44;
  --gradient-four: #F6C37B;
  --gradient-five: #FBE5BB;
  --medium-vermilion: #D65B2E;
  --firebrick: #BA2B20;
  --black: #000;
}

html, body {
  background-color: var(--light-white);
  font-family: 'Garton Pro';
  margin: 0;
  height: 100%;
  width: 100%;
}

.gradient-one {
  background: var(--gradient-one);
}

.gradient-two {
  background: var(--gradient-two);
}

.gradient-three {
  background: var(--gradient-three);
  color: var(--medium-vermilion);
}

.gradient-four {
  background: var(--gradient-four);
  color: var(--medium-vermilion) !important;
}

.gradient-five {
  background: var(--gradient-five);
  color: var(--firebrick) !important;
}

.wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.sidebar {
  width: 272px;
  background-color: var(--blue);
  /* height: 100%; */
  /* height: 100vh; */
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: auto;
}

.logo {
  margin-top: 50px;
}

.logo > a > img {
  width: 100px;
}

.wrapper-content {
  padding: 70px;
  width: calc(100% - 452px);
  position: relative;
  overflow: hidden;
  /* height: calc(100% - 140px); */
  height: 90vh;
}

.wrapper-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 0;
  height: calc(100% - 230px);
  /* height: 90vh; */
}

.wrapper-content ul li {
  flex-grow : 1;
  color: var(--white);
  font-size: 2.8rem;
  text-align: center;
  height : 20%;
  width : calc(33.33% - 20px);
  margin: 0 30px 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wrapper-content.col-2 ul li {
  width : calc(50% - 20px);
}

.wrapper-content ul li span {
  position: relative;
  z-index: 1;
}

.wrapper-content.col-3 ul li:nth-child(3n) {
  margin-right: 0;
}

.wrapper-content.col-2 ul li:nth-child(2n) {
  margin-right: 0;
}

/* popup css start */

.popup-flex{
  margin:30px;
}
.popup-container {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 17, 17, 0.61);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.popup-content {
  background-color: #fefefe;
  margin: auto;
  border: 1px solid #888;
  width: 100%;
  height: calc(100% - 0px);
}

.popup-content .popup-question {
  height: calc(100% - 0px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}

.popup-content .popup-question.popup-question-show {
  height: calc(100% - 250px);
}

.popup-content .popup-question p {
  padding: 20px 10px;
  line-height: 20px;
  margin: 0 0 50px;
  color: var(--white);
  font-size: 1.8rem;
  font-family: 'Union';
  font-weight: bold;
  width: 100%;
  margin: 0 auto;
}

.popup-content .popup-question img {
  max-width: 370px;
  margin-bottom: 40px;
}

.popup-content .popup-question h2 {
  margin: 0 auto;
  color: var(--white);
  font-size: 2rem;
  width: 100%;
  text-align: left;
  font-weight: normal;
  padding: 10px;
}

.popup-content span{
  width: 100%;
  display: inline;
  font-family: 'Union';
}

.show{
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.more-articles{
  margin:30px 30px 50px;
  font-size:20px;
}
.more-articles a{
  margin:0 10px;
  text-decoration:underline;
}

.popup-answer {
  height: 250px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  font-size: 1.8rem;
  text-align: left;
  padding: 10px;
}

.dropdown-menu {
  margin: 50px auto 0;
  width: 80%;
}

.popup-header {
  background-color: var(--blue);
  width: 100%;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 16px;
  flex-wrap: wrap;
}

.popup-header p {
  margin: 0;
  cursor: pointer;
  font-family: 'Union';
  font-weight: bold;
}

.popup-header p kbd {
  font-weight: bold;
  background: #E4E4E4;
  padding: 5px 15px;
  display: inline-block;
  border-radius: 5px;
  font-size: 14px;
  color: var(--black);
}

.menu-btn {
  padding: 10px;
  margin: 5px 0px 0px 0px;
  text-align: left;
  color: #FFF;
  display: flex;
  align-items: start;
  font-size: 26px;
  text-transform: uppercase;
  font-family: 'Union';
  font-weight: bold;
}

.menu-btn img {
  height: 20px;
  margin-right: 8px;
  margin-top: 5px;
  transition: all 500ms;
}

.menu-btn.active img {
  transform: rotate(90deg);
}

.drop_container {
  overflow: hidden;
  /* max-height: 0; */
}

.drop_container > div {
  background: var(--white);
}

.drop_container.show {
  /* max-height: 300px; */
  transition: max-height 0.3s ease-in;
}

.drop_container.hide {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

.drop_container p {
  color: var(--white);
  text-align: left;
  margin: 8px 5px;
  font-size: 30px;
  font-family: 'Union';
  font-weight: normal;
}

.team-name {
  font-family: 'Union';
  font-size: 20px;
}

.drop_container > div > .item {
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 8px 0;
  align-items: start;
  text-decoration: none;
  color: var(--blue);
  font-size: 20px;
  font-family: 'Union';
  font-weight: bold;
}

.drop_container > div > .item.active {
  background: #83DAEF;
}

.drop_container > div > .item:hover {
  background: #83DAEF;
}

.drop_container.drop_container-counter > div {
  background: transparent;
  color: var(--white);
}

.drop_container.drop_container-counter > div > .item {
  color: var(--white);
  flex-direction: row;
  align-items: center;
}

.drop_container.drop_container-counter > div > .item .arrow-fixed {
  background: var(--white);
  margin: 0 0 0 0;
  width: 100%;
  position: relative;
}

.drop_container.drop_container-counter > div > .item .arrow-fixed .counter-value {
  text-align: left;
  padding: 9px;
  color: #000;
}

.drop_container.drop_container-counter > div > .item button {
  position: absolute;
  border: 0;
  background: transparent;
  padding: 0;
  right: 10px;
  top: 0;
  transform: rotate(180deg);
  cursor: pointer;
}

.drop_container.drop_container-counter > div > .item button:last-child {
  top: auto;
  bottom: 0;
  transform: none;
}

.drop_container.drop_container-counter > div > .item button img {
  width: 15px;
}

.drop_container.drop_container-counter > div > .item:hover {
  background: transparent;
}

.disable {
  pointer-events: none;
}

.wrapper-title {
  display: flex;
}

.wrapper-title h1 {
  width: calc(100% / 3 - 20px);
  align-items: center;
  justify-content: center;
  margin: 0 30px 0px 0;
  text-align: center;
  font-size: 2rem;
  color: #EB6334;
    font-weight: normal;
}

.wrapper-content.col-2 .wrapper-title h1 {
  width: calc(100% / 2 - 20px);
}

.wrapper-title h1:last-child {
  margin-right: 0;
}

.notes {
  width: 80%;
  text-align: left;
  margin: auto;
}

.notes p {
  color: var(--white);
  text-transform: capitalize;
  font-size: 1.8rem;
  font-family: 'Union';
  font-weight: bold;
  cursor: pointer;
}

.notes p span {
  background: #E4E4E4;
  color: #2A1E2A;
  padding: 2px 10px;
  display: inline-block;
  border-radius: 5px;
  font-size: 1.188rem;
}

.fixed-btn {
  display: none;
}

.drop_container > div > .item.remove {
  display: none;
}

.box-disable:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: gray !important;
  color: rgba(255,255,255,0.6) !important;
}

.box-disable span {
  color: rgba(255,255,255,0.5);
}

button.reset-progress {
  background: #FF5900;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

@media screen and (max-width: 1700px){

  .wrapper-content {
    padding: 40px;
    width: calc(100% - 392px);
    position: relative;
    overflow: hidden;
    /* height: calc(100% - 80px); */
    height: 90vh;
  }

  .wrapper-title h1 {
    font-size: 1.2rem;
  }

  .wrapper-content ul li {
    height: calc(100% / 5);
  }

  .wrapper-content ul {
    height: calc(100% - 154px);
  }

  .popup-content .popup-question h2 {
    font-size: 2rem;
    width: 100%;
  }


  .popup-content .popup-question {
    width: auto;
    padding: 20px;
    height: calc(100% - 40px)
  }

  .popup-answer {
    height: 170px;
    font-size: 2rem;
    text-align: center;
    padding: 20px;
  }

}

@media screen and (max-width: 1317px){

  .wrapper-content {
    padding: 40px;
    width: calc(100% - 392px);
    position: relative;
    overflow: hidden;
    /* height: calc(100% - 80px); */
    height: 90vh;
  }

  .wrapper-title h1 {
    font-size: 1.2rem;
  }

  .wrapper-content ul li {
    height: calc(100% / 5);
  }

  .wrapper-content ul {
    height: calc(100% - 180px);
  }

  .popup-content .popup-question h2 {
    font-size: 1.8rem;
    width: 100%;
  }


  .popup-content .popup-question {
    width: auto;
    padding: 20px;
    height: calc(100% - 40px)
  }

  .popup-answer {
    height: 170px;
    font-size: 1.8rem;
    text-align: center;
    padding: 20px;
  }

}

@media screen and (max-width: 991px){

  .wrapper-content {
    padding: 10px;
    width: calc(100% - 0px);
    /* height: calc(100% - 20px); */
    height: 90vh;
  }

  .wrapper-title h1 {
    font-size: 16px;
  }

  .wrapper-content ul {
    height: calc(100% - 110px);
  }

  .wrapper-content ul li {
    width: calc(100% / 3 - 10px);
    height: calc(100% / 5);
    font-size: 10vw;
    margin: 0 15px 15px 0px;
  }

  .sidebar {
    position: absolute;
    left: -312px;
    z-index: 1;
    transition: left 500ms;
  }

  .sidebar.active {
    left: 0;
  }

  .fixed-btn {
    display: block;
    font-family: 'Garton Pro';
    font-size: 1rem;
    width: auto;
    position: fixed;
    transform: rotate(90deg);
    left: -25px;
    bottom: 25px;
    background: var(--blue);
    border: none;
    border-radius: 8px 0 0 0;
    padding: 6px 20px;
    z-index: 1;
    color: var(--white);
    transition: left 500ms;
  }

  .fixed-btn.active {
    left: 287px;
  }

  .popup-content .popup-question p {
    margin: 0;
    font-size: 2.2rem;
    text-align: center;
    line-height: 32px
  }

  .popup-content .popup-question h2 {
    font-size: 4vw;
    width: 100%;
  }

  .popup-answer {
    height: 180px;
    font-size: 4vw;
    text-align: center;
    padding: 20px;
  }

  .popup-content .popup-question {
    width: calc(100% - 40px);
    padding: 20px;
  }

  .popup-content .popup-question.popup-question-show {
    height: calc(100% - 260px);
  }

  .logo {
    margin-top: 30px;
  }

  .drop_container > div > .item {
    font-size: 16px;
  }

  .menu-btn, .drop_container p {
    font-size: 22px;
  }

  .menu-btn img {
    height: 15px;
    margin-top: 4px;
  }

  .logo > a > img {
    width: 80px;
  }

  .notes {
    width: 55%;
  }

  .notes p {
    font-size: 22px;
  }

  .notes p span {
    font-size: 1rem;
  }

  .popup-header p {
    margin-bottom: 0;
  }

}

@media screen and (min-width: 576px) and (max-width: 991px){

  .wrapper-content ul {
    height: calc(100% - 60px);
  }

  .wrapper-content ul li {
    width: calc(100% / 3 - 10px);
    height: calc(100% / 5 - 10px);
    font-size: 7vw;
    margin: 0 15px 15px 0px;
  }

}

@media screen and (min-width: 768px) and (max-width: 991px){

  .wrapper-content {
    padding: 20px;
    /* height: calc(100% - 40px); */
    height: 90vh;
  }

  .wrapper-content ul {
    height: calc(100% - 40px);
  }

  .popup-content .popup-question h2 {
    font-size: 4vw;
    width: 100%;
  }
}

@media screen and (max-width: 519px) {

  .wrapper-content ul {
    height: calc(100% - 130px);
  }

}

@media screen and (max-width: 476px) {
  .popup-header p kbd {
    display: table;
    margin-top: 8px;
  }

  .popup-header p {
    margin-bottom: 15px;
  }

  .popup-header p:last-child {
    margin-bottom: 0;
  }
}

.swal2-confirm.swal2-styled {
  background-color : var(--blue) !important;

}