.Itable th{

    text-align: center;
    padding: 8px 0px 8px 0px;
    background: #f6f6f6;
}

.Itable td{
    padding: 4px 8px 8px 4px;
}

.rc-anchor-light.rc-anchor-normal {
    /* border: 1px solid #d3d3d3; */
}

.special_input {
    max-width: none !important;
}

.imp {
    color: red;
    font-size: 20px;
}

/* chekc box style */
.toggle{
    --uiToggleSize: var(--toggleSize, 20px);
    --uiToggleIndent: var(--toggleIndent, .4em);
    --uiToggleBorderWidth: var(--toggleBorderWidth, 2px);
    --uiToggleColor: var(--toggleColor, #000);
    --uiToggleDisabledColor: var(--toggleDisabledColor, #868e96);
    --uiToggleBgColor: var(--toggleBgColor, #fff);
    --uiToggleArrowWidth: var(--toggleArrowWidth, 2px);
    --uiToggleArrowColor: var(--toggleArrowColor, #fff);
  
    display: inline-block;
    position: relative;
  }
  
  .toggle__input{
    position: absolute;
    left: -99999px;
  }
  
  .toggle__label{
    display: inline-flex;
    cursor: pointer;
    min-height: var(--uiToggleSize);
    padding-left: calc(var(--uiToggleSize) + var(--uiToggleIndent));
  }
  
  .toggle__label:before, .toggle__label:after{
    content: "";
    box-sizing: border-box;  
    width: 1em;
    height: 1em;
    font-size: var(--uiToggleSize);
  
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .toggle__label:before{
    border: var(--uiToggleBorderWidth) solid var(--uiToggleColor);
    z-index: 2;
  }
  
  .toggle__input:disabled ~ .toggle__label:before{
    border-color: var(--uiToggleDisabledColor);
  }
  
  .toggle__input:focus ~ .toggle__label:before{
    box-shadow: 0 0 0 2px var(--uiToggleBgColor), 0 0 0px 4px var(--uiToggleColor);
  }
  
  .toggle__input:not(:disabled):checked:focus ~ .toggle__label:after{
    box-shadow: 0 0 0 2px var(--uiToggleBgColor), 0 0 0px 4px var(--uiToggleColor);
  }
  
  .toggle__input:not(:disabled) ~ .toggle__label:after{
    background-color: var(--uiToggleColor);
    opacity: 0;
  }
  
  .toggle__input:not(:disabled):checked ~ .toggle__label:after{
    opacity: 1;
  }
  
  .toggle__text{
    margin-top: auto;
    margin-bottom: auto;
  }
  
  /*
  The arrow size and position depends from sizes of square because I needed an arrow correct positioning from the top left corner of the element toggle
  */
  
  .toggle__text:before{
    content: "";
    box-sizing: border-box;
    width: 0;
    height: 0;
    font-size: var(--uiToggleSize);
  
    border-left-width: 0;
    border-bottom-width: 0;
    border-left-style: solid;
    border-bottom-style: solid;
    border-color: var(--uiToggleArrowColor);
  
    position: absolute;
    top: .5428em;
    left: .2em;
    z-index: 3;
  
    transform-origin: left top;
    transform: rotate(-40deg) skew(10deg);
  }
  
  .toggle__input:not(:disabled):checked ~ .toggle__label .toggle__text:before{
    width: .5em;
    height: .25em;
    border-left-width: var(--uiToggleArrowWidth);
    border-bottom-width: var(--uiToggleArrowWidth);
    will-change: width, height;
    transition: width .1s ease-out .2s, height .2s ease-out;
  }
  
  
  .toggle__label:before, .toggle__label:after{
    border-radius: 2px;
  }
  
  .toggle__input:not(:disabled) ~ .toggle__label:before,
  .toggle__input:not(:disabled) ~ .toggle__label:after{
    opacity: 1;
    transform-origin: center center;
    will-change: transform;
    transition: transform .2s ease-out;
  }
  
  .toggle__input:not(:disabled) ~ .toggle__label:before{
    transform: rotateY(0deg);
    transition-delay: .2s;
  }
  
  .toggle__input:not(:disabled) ~ .toggle__label:after{
    transform: rotateY(90deg);
  }
  
  .toggle__input:not(:disabled):checked ~ .toggle__label:before{
    transform: rotateY(-90deg);
    transition-delay: 0s;
  }
  
  .toggle__input:not(:disabled):checked ~ .toggle__label:after{
    transform: rotateY(0deg);
    transition-delay: .2s;
  }
  
  .toggle__text:before{
    opacity: 0;
  }
  
  .toggle__input:not(:disabled):checked ~ .toggle__label .toggle__text:before{
    opacity: 1;
    transition: opacity .1s ease-out .3s, width .1s ease-out .5s, height .2s ease-out .3s;
  }
  
 .toggle{
    --toggleColor: #02bfec;
    /* --toggleBgColor: #028eb1; */
    --toggleSize: 20px;
  }

/**
2 one
*/

input[type="checkbox"] + label {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #555;
  border-radius: 100%;
  top: 23%;
  left: 2%;
  transform: translate(-50%, -50%);
  transition: all ease-out 200ms;
  text-indent: 30px;
  font: normal normal 20px/10px "Helvetica";
  white-space: nowrap;
  color: #555;
  user-select: none;
}

input[type="checkbox"] + label:after {
    content: "";
    position: absolute;
    width: 0px;
    height: 6px;
    border-bottom: 2px solid #02bfec;
    border-left: 2px solid #02bfec;
    top: 25%;
    left: 55%;
    transform-origin: bottom left;
    transform: rotate(-45deg);
    opacity: 0;
    transition: all ease-out 200ms;
  }

input[type="checkbox"]:checked + label {
  border: 2px solid #02bfec;
}

input[type="checkbox"]:checked + label:after {
    opacity: 1;
    width: 15px;
  }

#cbCondition {
  display: none;
}

#cbCCondition {
  display: none;
}

.checkBoxCheked {
  display: none;
}

.txtIndent30{
  text-indent: 30px;
}

/* End of check style */

/* radio group */

/* end radio group */

/* select */
/* ===== Actual Styles ===== */

/* ===== Horizontal Rule ===== */
.rule {
    margin: 10px 0;
    border: none;
    height: 1.5px;
    background-image: linear-gradient(left, #f0f0f0, #c9bbae, #f0f0f0);
  }
  
  /* ===== Select Box ===== */
  .sel {
    font-size: 1rem;
    display: inline-block;
    margin: 3em 2em;
    width: 350px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
  }
  
  .sel::before {
    position: absolute;
    content: '\f063';
    font-family: 'FontAwesome';
    font-size: 2em;
    color: #FFF;
    right: 20px;
    top: calc(50% - 0.5em);
  }
  
  .sel.active::before {
    transform: rotateX(-180deg);
  }
  
  .sel__placeholder {
    display: block;
    font-family: 'Quicksand';
    font-size: 2.3em;
    color: #838e95;
    padding: 0.2em 0.5em;
    text-align: left;
    pointer-events: none;
    user-select: none;
    visibility: visible;
  }
  
  .sel.active .sel__placeholder {
    visibility: hidden;
  }
  
  .sel__placeholder::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.2em 0.5em;
    content: attr(data-placeholder);
    visibility: hidden;
  }
  
  .sel.active .sel__placeholder::before {
    visibility: visible;
  }
  
  .sel__box {
    position: absolute;
    top: calc(100% + 4px);
    left: -4px;
    display: none;
    list-style-type: none;
    text-align: left;
    font-size: 1em;
    background-color: #FFF;
    width: calc(100% + 8px);
    box-sizing: border-box;
  }
  
  .sel.active .sel__box {
    display: block;
    animation: fadeInUp 500ms;
  }
  
  .sel__box__options {
    display: list-item;
    font-family: 'Quicksand';
    font-size: 1.5em;
    color: #838e95;
    padding: 0.5em 1em;
    user-select: none;
  }
  
  .sel__box__options::after {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 0.5em;
    margin-left: 5px;
    display: none;
  }
  
  .sel__box__options.selected::after {
    display: inline;
  }
  
  .sel__box__options:hover {
    background-color: #ebedef;
  }
  
  /* ----- Select Box Black Panther ----- */
  .sel {
    border-bottom: 4px solid rgba(0, 0, 0, 0.3);
  }
  
  .sel--black-panther {
    z-index: 3;
  }
  
  /* ----- Select Box Superman ----- */
  .sel--superman {
  /*   display: none; */
    z-index: 2;
  }
  
  /* ===== Keyframes ===== */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 20px, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
  
    to {
      opacity: 0;
    }
  }
/* end select */

/* label */
label {
    font-weight: 500;
}
/* end label */

/* Text center */
.txtcenter{
  text-align: center !important;
}
/* end */


/*
css for ticker type
*/

/* CSS Document */

.breakingNews {
  width: 100%;
  height: 40px;
  /* background: #FFF; */
  position: relative;
  border: solid 2px #2096cd;
  overflow: hidden;
}

.breakingNews>.bn-title {
  width: auto;
  height: 40px;
  display: inline-block;
  background: #2096cd;
  position: relative;
}

.breakingNews>.bn-title>h2 {
  display: inline-block;
  margin: 0;
  padding: 0 20px;
  line-height: 40px;
  font-size: 20px;
  color: #FFF;
  height: 40px;
  box-sizing: border-box;
}

.breakingNews>.bn-title>span {
  width: 0;
  position: absolute;
  right: -10px;
  top: 10px;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #2096cd;
}

.breakingNews>ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  left: 210px;
  top: 0;
  right: 40px;
  height: 40px;
  font-size: 16px;
}

.breakingNews>ul>li {
  position: absolute;
  height: 40px;
  width: 100%;
  line-height: 40px;
  display: none;
}

.breakingNews>ul>li>a {
  text-decoration: none;
  color: #FFF;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  float: left;
}

.breakingNews>ul>li>a>span {
  color: #2096cd;
}

.breakingNews>ul>li>a:hover {
  color: #2096cd;
}

.breakingNews>.bn-navi {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
}

.breakingNews>.bn-navi>span {
  width: 20px;
  height: 40px;
  position: absolute;
  top: 0;
  cursor: pointer;
  opacity: 0.3;
  background-image: url(../img/bn-arrows.png);
  background-repeat: no-repeat;
}

.breakingNews>.bn-navi>span:hover {
  opacity: 1;
}

.breakingNews>.bn-navi>span:first-child {
  background-position: left center;
  left: 0;
}

.breakingNews>.bn-navi>span:last-child {
  background-position: right center;
  right: 0;
}

.breakingNews:hover .bn-navi {
  opacity: 1;
}

.bn-large {
  height: 50px;
}

.bn-large>.bn-title {
  height: 50px;
}

.bn-large>.bn-title>h2 {
  line-height: 50px;
  font-size: 26px;
}

.bn-large>.bn-title>span {
  top: 15px;
}

.bn-large>ul {
  height: 50px;
  left: 250px;
  font-size: 20px;
}

.bn-large>ul>li {
  height: 50px;
  line-height: 50px;
}

.bn-large>.bn-navi {
  height: 50px;
}

.bn-large>.bn-navi>span {
  height: 50px;
}

.bn-small {
  height: 30px;
}

.bn-small>.bn-title {
  height: 30px;
}

.bn-small>.bn-title>h2 {
  line-height: 30px;
  font-size: 18px;
}

.bn-small>.bn-title>span {
  top: 5px;
}

.bn-small>ul {
  height: 30px;
  left: 200px;
  font-size: 14px;
}

.bn-small>ul>li {
  height: 30px;
  line-height: 30px;
}

.bn-small>.bn-navi {
  height: 30px;
}

.bn-small>.bn-navi>span {
  height: 30px;
}


/*color styles -----------------------------*/

.bn-red {
  border-color: #f44a56;
}

.bn-red>.bn-title {
  background: #f44a56;
  float: left;
}

.bn-red>.bn-title>span {
  border-left-color: #f44a56;
}

.bn-red>ul>li>a:hover,
.bn-red>ul>li>a>span {
  color: #f3f3f3;
}

.bn-green {
  border-color: #27ae60;
}

.bn-green>.bn-title {
  background: #27ae60;
}

.bn-green>.bn-title>span {
  border-left-color: #27ae60;
}

.bn-green>ul>li>a:hover,
.bn-green>ul>li>a>span {
  color: #27ae60;
}

.bn-purple {
  border-color: #795aac;
}

.bn-purple>.bn-title {
  background: #795aac;
}

.bn-purple>.bn-title>span {
  border-left-color: #795aac;
}

.bn-purple>ul>li>a:hover,
.bn-purple>ul>li>a>span {
  color: #795aac;
}

.bn-turquoise {
  border-color: #1fb5ad;
}

.bn-turquoise>.bn-title {
  background: #1fb5ad;
}

.bn-turquoise>.bn-title>span {
  border-left-color: #1fb5ad;
}

.bn-turquoise>ul>li>a:hover,
.bn-turquoise>ul>li>a>span {
  color: #1fb5ad;
}

.bn-orange {
  border-color: #f46e27;
}

.bn-orange>.bn-title {
  background: #f46e27;
}

.bn-orange>.bn-title>span {
  border-left-color: #f46e27;
}

.bn-orange>ul>li>a:hover,
.bn-orange>ul>li>a>span {
  color: #f46e27;
}

.bn-black {
  border-color: #333;
}

.bn-black>.bn-title {
  background: #333;
}

.bn-black>.bn-title>span {
  border-left-color: #333;
}

.bn-black>ul>li>a:hover,
.bn-black>ul>li>a>span {
  color: #333;
}

.bn-yellow {
  border-color: #d3ac23;
}

.bn-yellow>.bn-title {
  background: #d3ac23;
}

.bn-yellow>.bn-title>span {
  border-left-color: #d3ac23;
}

.bn-yellow>ul>li>a:hover,
.bn-yellow>ul>li>a>span {
  color: #d3ac23;
}

.bn-light {
  border-color: #DDD;
}

.bn-light>.bn-title {
  background: #DDD;
}

.bn-light>.bn-title>h2 {
  color: #333;
}

.bn-light>.bn-title>span {
  border-left-color: #DDD;
}

.bn-light>ul>li>a:hover,
.bn-light>ul>li>a>span {
  color: #DDD;
}

.bn-pink {
  border-color: #d65aac;
}

.bn-pink>.bn-title {
  background: #d65aac;
}

.bn-pink>.bn-title>span {
  border-left-color: #d65aac;
}

.bn-pink>ul>li>a:hover,
.bn-pink>ul>li>a>span {
  color: #d65aac;
}

.bn-darkred {
  border-color: #d01e1e;
}

.bn-darkred>.bn-title {
  background: #d01e1e;
}

.bn-darkred>.bn-title>span {
  border-left-color: #d01e1e;
}

.bn-darkred>ul>li>a:hover,
.bn-darkred>ul>li>a>span {
  color: #d01e1e;
}

.bn-bordernone {
  border: none;
}

.bn-italic>ul>li>a {
  font-style: italic;
}

.bn-bold>ul>li>a {
  font-weight: bold;
}

.breakingNews>.bn-navi,
.breakingNews>ul>li>a,
.breakingNews>.bn-navi>span {
  transition: .25s linear;
  -moz-transition: .25s linear;
  -webkit-transition: .25s linear;
}
/*
end for css for ticker type
*/

/* 
  New "radio-group" element insist of basic radio use Tab style
 */
 /* .radio-group {
  border: none;
  padding: 0;
  font-size: 1.5rem; /* font-size--1 */
  margin-bottom: 2.5rem;
} */

.radio-group-title {
  margin-bottom: .5rem;
  font-size: 1rem;
}

.radio-group-input {
  opacity: 0;
  position: absolute;
}

.radio-group-label {
  float: left;
}

/* .radio-group-label {
  display: inline-block;
  background-color: white;
  color: #333;
  text-align: center;
  text-shadow: none;
  padding: 0.5rem 1rem;
  line-height: 1.25;
  margin-right: -1px;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  height: 3rem;
  -webkit-transition: background 0.1s ease-in-out, border-color 0.1s ease-in-out;
  -moz-transition:    background 0.1s ease-in-out, border-color 0.1s ease-in-out;
  -ms-transition:     background 0.1s ease-in-out, border-color 0.1s ease-in-out;
  -o-transition:      background 0.1s ease-in-out, border-color 0.1s ease-in-out;
  transition:         background 0.1s ease-in-out, border-color 0.1s ease-in-out;
} */

.radio-group-label:hover {
  cursor: pointer;
}

.radio-group-input:checked + .radio-group-label {
  background-color: #d2e9f9;
  border: 1px solid #007ac2;
  margin-right: 0;
}

.radio-group-input:checked + .radio-group-label + .radio-group-input + .radio-group-label {
  border-left: none;
}

.radio-group-label:first-of-type {
  border-radius: 3px 0 0 3px;
}

.radio-group-label:last-of-type {
  border-radius: 0 3px 3px 0;
}

@media (min-width: 320px){
	
}

@media (min-width: 480px){
	
}

@media (min-width: 768px){
	.radio-group {
    border: none;
    padding: 0;
    font-size: 1rem; /* font-size--1 */
    margin-bottom: 2.5rem;
  }
  .radio-group-label {
    display: inline-block;
    background-color: white;
    color: #333;
    text-align: center;
    text-shadow: none;
    padding: 0.2rem 0.6rem;
    line-height: 1.25;
    margin-right: -1px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    height: 2rem;
    -webkit-transition: background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    -moz-transition:    background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    -ms-transition:     background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    -o-transition:      background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    transition:         background 0.1s ease-in-out, border-color 0.1s ease-in-out;
  }
}

@media (min-width: 992px){
	.radio-group {
    border: none;
    padding: 0;
    font-size: 1.2rem; /* font-size--1 */
    margin-bottom: 2.5rem;
  }
  .radio-group-label {
    display: inline-block;
    background-color: white;
    color: #333;
    text-align: center;
    text-shadow: none;
    padding: 0.3rem 0.8rem;
    line-height: 1.25;
    margin-right: -1px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    height: 2.3rem;
    -webkit-transition: background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    -moz-transition:    background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    -ms-transition:     background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    -o-transition:      background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    transition:         background 0.1s ease-in-out, border-color 0.1s ease-in-out;
  }
}

@media (min-width: 1280px){
	.radio-group {
    border: none;
    padding: 0;
    font-size: 1.45rem; /* font-size--1 */
    margin-bottom: 2.5rem;
  }
  .radio-group-label {
    display: inline-flex;
    background-color: white;
    color: #333;
    text-align: center;
    text-shadow: none;
    padding: 0.5rem 1rem;
    line-height: 1.25;
    margin-right: -1px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    height: 3rem;
    -webkit-transition: background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    -moz-transition:    background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    -ms-transition:     background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    -o-transition:      background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    transition:         background 0.1s ease-in-out, border-color 0.1s ease-in-out;
  }
}

/* 
  End "radio-group"
 */

 /**
  List Style Of Dashed
 */

 .listStyle {
  border-top: 2px dashed;
  border-color: blue !important;
  margin:0; padding: 30px;
  counter-increment: section;
  position: relative;
}



.listStyle:nth-child(odd):before {
  content: counter(section);
  right: 100%; 
  margin-top: 7px;
  margin-right: -13px;
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  /* height: 20px;
  width: 20px; */
  background-color: blue;
  text-align:center;
  color: white;
  font-size: 110%;
}

.listStyle:nth-child(even):before {
  content: counter(section);
  left: 100%; 
  margin-top: 7px;
  margin-left: -14px;
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  /* height: 20px;
  width: 20px; */
  background-color: blue;
  text-align:center;
  color: white;
  font-size: 110%;
}



.listStyle:nth-child(odd) {
  border-left: 2px dashed;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-right: 30px; 
  padding-right: 0;
}

.listStyle:nth-child(even) {
  border-right: 2px dashed;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-left: 30px; 
  padding-left: 0;
}

.listStyle:first-child {
  border-top: 0;
  border-top-right-radius:0;
  border-top-left-radius:0;
}

.listStyle:last-child {
  border-bottom-right-radius:0;
  border-bottom-left-radius:0;
}

 /**
  List Stle Of Dashed
 */

 /**
  Social Icon
 */
 ul.socialIcons {
  padding: 0;
  text-align: center;
}
.socialIcons li {
  background: yellow;
  list-style: none;
  display: inline-block;
  margin: 15px;
  /* margin-top: 15%; */
  border-radius: 2em;
  overflow:hidden;
}
.socialIcons li a {
  display: block;
  padding: .5em;
  max-width: 2.3em;
  min-width: 2.3em;
  height: 2.3em;
  white-space: nowrap;
  line-height: 1.5em;
  transition:.5s;
  text-decoration: none;
  font-family: arial;
  color: #fff;
}
.socialIcons li i {
  margin-right:.5em;
}
.socialIcons li:hover a {
  max-width:200px;
  padding-right:1em;
}
.socialIcons .facebook {
  background: #3b5998;
  box-shadow: 0 0 6px #3b5998;
}
.socialIcons .twitter {
  background: #00aced;
  box-shadow: 0 0 6px #00aced;
}
.socialIcons .instagram {
  background: #cd486b;
  box-shadow: 0 0 6px #cd486b;
}
.socialIcons .pinterest {
  background: #c92228;
  box-shadow: 0 0 6px #c92228;
}
.socialIcons .whatsapp {
  background: #25d366;
  /* box-shadow: 0 0 6px #25d366; */
}
.socialIcons .linkedin {
  background: #15aabf;
  box-shadow: 0 0 6px #15aabf;
}
.socialIcons .phone {
  background: #000000;
  /* box-shadow: 0 0 6px #000000; */
}

@media screen and (min-width:280px) and (max-width:768px) {
	.socialIcons li {
    background: yellow;
    list-style: none;
    display: inline-block;
    margin: 10px;
    /* margin-top: 15%; */
    border-radius: 2em;
    overflow:hidden;
  }
}
 /**
  End Of Social Icon
 */