body,
html {
  margin: 0;
  height: 100%;
  display: block;
}

html {
  font: normal 16px / 24px 'Source Sans Pro';
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  color: #3d3d3d;
  background-image: none;
}

body {
  background-color: #fafafa;
  background-image: url(https://staging.klickdata.k3.io/en/assets/images/bg.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  font-family: 'Source Sans Pro';
  font-weight: 300;
  color: #3d3d3d;
  text-transform: none;
  letter-spacing: 0;
}

/*CSS helper classes*/
.strong {
  font-weight: bold;
}

.inline-center {
  text-align: center;
}

.block-center {
  margin: 0 auto
}

.text-left {
  text-align: left
}

.text-right {
  text-align: right !important
}

.w-100 {
  width: 100%;
}

.w-80 {
  width: 80%;
}

.w-50 {
  width: 50%;
}

.red {
  color: #e44a66;
}

.red-bg {
  background-color: #e44a66;
}

.show-mobile-only {
  display: none;
}

.hide-mobile-only {
  display: block;
}

.eg-color {
  color: #ff9961;
}

.eg-bg {
  background-color: #ff9961;
}

.ind-color {
  color: #93cbd1;
}

.ind-bg {
  background-color: #93cbd1;
}

.sw-color {
  color: #667683;
}

.sw-bg {
  background-color: #667683;
}

.ku-color {
  color: #bfd8d0;
}

.ku-bg {
  background-color: #bfd8d0;
}

.white {
  color: #fff
}

/*Tabs Design*/
.tabs {
  background: white;
  padding: 50px;
  padding-bottom: 80px;
  width: 70%;
  height: auto;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  border-radius: 5px;
  min-width: 240px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.tabs input[name="tab-control"] {
  display: none;
}

.tabs .content section h2,
.tabs ul li label {
  font-weight: bold;
  font-size: 18px;
  color: #e44a66;
}

.tabs ul {
  list-style-type: none;
  padding-left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tabs ul li {
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 20%;
  padding: 0 10px;
  text-align: center;
}

.tabs ul li label {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #929daf;
  padding: 5px auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tabs ul li label br {
  display: none;
}

.tabs ul li label svg {
  fill: #929daf;
  height: 1.2em;
  vertical-align: bottom;
  margin-right: 0.2em;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tabs ul li label:hover,
.tabs ul li label:focus,
.tabs ul li label:active {
  outline: 0;
  color: #bec5cf;
}

.tabs ul li label:hover svg,
.tabs ul li label:focus svg,
.tabs ul li label:active svg {
  fill: #bec5cf;
}

.tabs .slideer {
  position: relative;
  width: 20%;
  -webkit-transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
  transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}

.tabs .slideer .indicator {
  position: relative;
  width: 50px;
  max-width: 100%;
  margin: 0 auto;
  height: 4px;
  background: #e44a66;
  border-radius: 1px;
}

.tabs .content {
  margin-top: 30px;
}

.tabs .content section {
  display: none;
  -webkit-animation-name: content;
  animation-name: content;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  line-height: 1.4;
  text-align: center;
  margin-top: 70px;
  font-size: 30px;
}

.tabs .content section h2 {
  color: #e44a66;
  display: none;
}

.tabs .content section h2::after {
  content: "";
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: #e44a66;
  margin-top: 5px;
  left: 1px;
}

.tabs input[name="tab-control"]:nth-of-type(1):checked~ul>li:nth-child(1)>label {
  cursor: default;
  color: #e44a66;
}

.tabs input[name="tab-control"]:nth-of-type(1):checked~ul>li:nth-child(1)>label svg {
  fill: #e44a66;
}

@media (max-width: 600px) {
  .tabs input[name="tab-control"]:nth-of-type(1):checked~ul>li:nth-child(1)>label {
    background: rgba(0, 0, 0, 0.08);
  }
}

.tabs input[name="tab-control"]:nth-of-type(1):checked~.slideer {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.tabs input[name="tab-control"]:nth-of-type(1):checked~.content>section:nth-child(1) {
  display: block;
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~ul>li:nth-child(2)>label {
  cursor: default;
  color: #e44a66;
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~ul>li:nth-child(2)>label svg {
  fill: #e44a66;
}

@media (max-width: 600px) {
  .tabs input[name="tab-control"]:nth-of-type(2):checked~ul>li:nth-child(2)>label {
    background: rgba(0, 0, 0, 0.08);
  }
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~.slideer {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~.content>section:nth-child(2) {
  display: block;
}

.tabs input[name="tab-control"]:nth-of-type(3):checked~ul>li:nth-child(3)>label {
  cursor: default;
  color: #e44a66;
}

.tabs input[name="tab-control"]:nth-of-type(3):checked~ul>li:nth-child(3)>label svg {
  fill: #e44a66;
}

@media (max-width: 600px) {
  .tabs input[name="tab-control"]:nth-of-type(3):checked~ul>li:nth-child(3)>label {
    background: rgba(0, 0, 0, 0.08);
  }
}

.tabs input[name="tab-control"]:nth-of-type(3):checked~.slideer {
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
}

.tabs input[name="tab-control"]:nth-of-type(3):checked~.content>section:nth-child(3) {
  display: block;
}

.tabs input[name="tab-control"]:nth-of-type(4):checked~ul>li:nth-child(4)>label {
  cursor: default;
  color: #e44a66;
}

.tabs input[name="tab-control"]:nth-of-type(4):checked~ul>li:nth-child(4)>label svg {
  fill: #e44a66;
}

@media (max-width: 600px) {
  .tabs input[name="tab-control"]:nth-of-type(4):checked~ul>li:nth-child(4)>label {
    background: rgba(0, 0, 0, 0.08);
  }
}

.tabs input[name="tab-control"]:nth-of-type(4):checked~.slideer {
  -webkit-transform: translateX(300%);
  transform: translateX(300%);
}

.tabs input[name="tab-control"]:nth-of-type(4):checked~.content>section:nth-child(4) {
  display: block;
}

.tabs input[name="tab-control"]:nth-of-type(5):checked~ul>li:nth-child(5)>label {
  cursor: default;
  color: #e44a66;
}

.tabs input[name="tab-control"]:nth-of-type(5):checked~ul>li:nth-child(5)>label svg {
  fill: #e44a66;
}

@media (max-width: 600px) {
  .tabs input[name="tab-control"]:nth-of-type(5):checked~ul>li:nth-child(5)>label {
    background: rgba(0, 0, 0, 0.08);
  }
}

.tabs input[name="tab-control"]:nth-of-type(5):checked~.slideer {
  -webkit-transform: translateX(400%);
  transform: translateX(400%);
}

.tabs input[name="tab-control"]:nth-of-type(5):checked~.content>section:nth-child(5) {
  display: block;
}

@-webkit-keyframes content {
  from {
    opacity: 0;
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes content {
  from {
    opacity: 0;
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@media (max-width: 1000px) {
  .tabs ul li label {
    white-space: initial;
  }

  .tabs ul li label br {
    display: initial;
  }

  .tabs ul li label svg {
    height: 1.5em;
  }
}

@media (max-width: 600px) {
  .tabs ul li label {
    padding: 5px;
    border-radius: 5px;
  }

  .tabs .slideer {
    display: none;
  }

  .tabs .content {
    margin-top: 20px;
  }

  .tabs .content section h2 {
    display: block;
  }
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~ul>li:nth-child(2)>label {
  cursor: default;
  color: #ff9961;
}

.tabs input[name="tab-control"]:nth-of-type(3):checked~ul>li:nth-child(3)>label {
  cursor: default;
  color: #93cbd1;
}

.tabs input[name="tab-control"]:nth-of-type(4):checked~ul>li:nth-child(4)>label {
  cursor: default;
  color: #667683;
}

.tabs input[name="tab-control"]:nth-of-type(5):checked~ul>li:nth-child(5)>label {
  cursor: default;
  color: #bfd8d0;
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~.slideer .indicator {
  background: #ff9961;
}

.tabs input[name="tab-control"]:nth-of-type(4):checked~.slideer .indicator {
  background: #667683;
}

.tabs input[name="tab-control"]:nth-of-type(3):checked~.slideer .indicator {
  background: #93cbd1;
}

.tabs input[name="tab-control"]:nth-of-type(5):checked~.slideer .indicator {
  background: #bfd8d0;
}

/*Sliders*/
#general .irs--round .irs-handle {
  top: 26px;
  width: 24px;
  height: 24px;
  border: 4px solid #e44a66;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(255, 0, 35, 0.3);
}

#general .irs--round .irs-line {
  top: 36px;
  height: 4px;
  background-color: #e44a66;
  border-radius: 4px;
}

#general .irs--round .irs-bar {
  top: 32px;
  height: 12px;
  background-color: #e44a66;
}

#egypt .irs--round .irs-handle {
  top: 26px;
  width: 24px;
  height: 24px;
  border: 4px solid #ff9961;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(255, 0, 35, 0.3);
}

#egypt .irs--round .irs-line {
  top: 36px;
  height: 4px;
  background-color: #ff9961;
  border-radius: 4px;
}

#egypt .irs--round .irs-bar {
  top: 32px;
  height: 12px;
  background-color: #ff9961;
}

#egypt h3 {
  color: #ff9961;
}

#india .irs--round .irs-handle {
  top: 26px;
  width: 24px;
  height: 24px;
  border: 4px solid #93cbd1;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(255, 0, 35, 0.3);
}

#india .irs--round .irs-line {
  top: 36px;
  height: 4px;
  background-color: #93cbd1;
  border-radius: 4px;
}

#india .irs--round .irs-bar {
  top: 32px;
  height: 12px;
  background-color: #93cbd1;
}

#india h3 {
  color: #93cbd1;
}

#sweden .irs--round .irs-handle {
  top: 26px;
  width: 24px;
  height: 24px;
  border: 4px solid #667683;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(255, 0, 35, 0.3);
}

#sweden .irs--round .irs-line {
  top: 36px;
  height: 4px;
  background-color: #667683;
  border-radius: 4px;
}

#sweden .irs--round .irs-bar {
  top: 32px;
  height: 12px;
  background-color: #667683;
}

#sweden h3 {
  color: #667683;
}

#kuwait .irs--round .irs-handle {
  top: 26px;
  width: 24px;
  height: 24px;
  border: 4px solid #bfd8d0;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(255, 0, 35, 0.3);
}

#kuwait .irs--round .irs-line {
  top: 36px;
  height: 4px;
  background-color: #bfd8d0;
  border-radius: 4px;
}

#kuwait .irs--round .irs-bar {
  top: 32px;
  height: 12px;
  background-color: #bfd8d0;
}

#kuwait h3 {
  color: #bfd8d0;
}

/*Custom styles*/
.main-wrapper {
  padding-top: 60px;
}

.kd-desc {
  padding: 0 2em;
}

.kd-desc h1.inline-center {
  margin: 40px;
}

.kd-sub {
  font-size: 36px;
  line-height: 1.4;
  color: #3d3d3d;
}

.slidecontainer {
  text-align: left;
  width: 80%;
}

.slidecontainer p {
  color: #3e5365;
  font-size: 20px;
  margin-bottom: 5px;
}

.slidecontainer h3 {
  color: #e44a66;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: -20px;
}

div.seperator {
	width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 30px;
} 

div.ref, div.ref a{
	font-size: 12px;
    text-align: left;
    margin: 5px 0;
    color: rgba(0, 0, 0, 0.7);
}
#egypt div.ref, #egypt div.ref a,
#kuwait div.ref, #kuwait div.ref a {
	text-align: right;
}

div.ref .titleRef {
	margin: 7px 0;
}

div.ref p {
	margin: 7px 0;
}
@media screen and (max-width: 599px) {
  .main-wrapper {
    padding-top: 30px;
  }

  .kd-desc {
    padding: 0 1em;
    width: 90% !important;
  }

  .kd-desc h1.inline-center {
    margin: 20px;
  }

  .show-mobile-only {
    display: block;
  }

  .hide-mobile-only {
    display: none;
  }

  .tabs {
    padding: 20px;
    padding-bottom: 80px;
    width: 80%;
  }

  .tabs ul li {
    padding: 0 5px;
  }

  img.show-mobile-only {
    width: 100%;
    height: 100%;
  }

  .tabs ul li label {
    display: flex;
  }

  .tabs ul {
    margin: 0
  }

  .tabs .content section {
    margin-top: 40px;
    font-size: 20px
  }

  .slidecontainer h3 {
    font-size: 23px
  }

  .slidecontainer p {
    font-size: 17px
  }

  #general .irs--round .irs-handle {
    top: 25px;
    width: 14px;
    height: 14px;
    border: 3px solid #e44a66;
  }

  #general .irs--round .irs-bar {
    top: 29px;
    height: 7px;
  }

  #general .irs--round .irs-line {
    top: 31px;
    height: 3px;
  }

  #egypt .irs--round .irs-handle {
    top: 25px;
    width: 14px;
    height: 14px;
    border: 3px solid #ff9961;
  }

  #egypt .irs--round .irs-bar {
    top: 29px;
    height: 7px;
  }

  #egypt .irs--round .irs-line {
    top: 31px;
    height: 3px;
  }

  #india .irs--round .irs-handle {
    top: 25px;
    width: 14px;
    height: 14px;
    border: 3px solid #93cbd1;
  }

  #india .irs--round .irs-bar {
    top: 29px;
    height: 7px;
  }

  #india .irs--round .irs-line {
    top: 31px;
    height: 3px;
  }

  #sweden .irs--round .irs-handle {
    top: 25px;
    width: 14px;
    height: 14px;
    border-radius: 3px solid #667683;
  }

  #sweden .irs--round .irs-bar {
    top: 29px;
    height: 7px;
  }

  #sweden .irs--round .irs-line {
    top: 31px;
    height: 3px;
  }

  #kuwait .irs--round .irs-handle {
    top: 25px;
    width: 14px;
    height: 14px;
    border: 3px solid #bfd8d0;
  }

  #kuwait .irs--round .irs-bar {
    top: 29px;
    height: 7px;
  }

  #kuwait .irs--round .irs-line {
    top: 31px;
    height: 3px;
  }
}
