.consolPopup {
    /*display: none;*/
    /*width: 500px !important;*/
    /*margin: 0;
    padding: 0;*/
}
#consolPopup button.close{
    position: absolute;
    right: 15px;
    top: 15px;
}
#consolPopupImpairedContent button.close{
    position: absolute;
    right: 15px;
    top: 15px;
}
.consolPopup h1 {
    font-family: 'Myriad-Pro-Light';
    font-size: 32px;
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    color: #3d7edb;
    /*margin-bottom: 20px;*/
}
.consolPopup .disability-all{
    display: flex;
    justify-content: center;

}
.consolPopup .disability-all .disability{
    font-family: 'Myriad-Pro-Light';
    font-size: 24px;
    width:  200px;
    height:  250px;
    margin: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-decoration: none;
}
.consolPopup .disability-all .disability.VisuallyImpaired {
    background: url(https://www.tatasteel.com/media/14131/img-visuallyimpaired.png) no-repeat;
}
.consolPopup .disability-all .disability.VisuallyImpaired:hover {
    background: url(https://www.tatasteel.com/media/14132/img-visuallyimpaired-h.png)  no-repeat;
}
.consolPopup .disability-all .disability.HearingImpaired {
    background: url(https://www.tatasteel.com/media/14129/img-hearingimpaired.png) no-repeat;
}
.consolPopup .disability-all .disability.HearingImpaired:hover {
    background: url(https://www.tatasteel.com/media/14130/img-hearingimpaired-h.png) no-repeat;
}
.consolPopup.VisuallyImpaired{
    background: url(https://www.tatasteel.com/media/14128/bgimg-visuallyimpaired.png) no-repeat;
    background-size: 50%;
    min-height: 250px;
}
.consolPopup.HearingImpaired{
    background: url(https://www.tatasteel.com/media/14135/bgimg-hearingimpaired.png) no-repeat;
    background-size: 60%;
    min-height: 250px;
}
.select-types{
    display:  flex;
    justify-content: center;
}

.consolPopup .select-types select {
    margin: 0 0 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #3d7edb;
    background: url(https://www.tatasteel.com/media/14133/select_drop_icon-black.png) no-repeat right center;
    padding: 6px 40px 4px 10px;
	font-size: 1.5rem;
    color: #333333;
    font-family: 'Myriad-Pro-Light';
    outline: none;
    border-radius: 0px;
}
.types-innr-hdr{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.types-innr-hdr h1{
    display: flex;
    flex: 1;
    justify-content: center;
    margin-bottom: 0;
}

.consolPopup ul li {
	font-size: 1rem;
}
.consolPopup ul {
	padding-left: 20px
}

/*swich Start*/

.consolPopup .swich-wrapper{
    display: flex;
    justify-content: space-between;
    max-width: 74%;
    margin: 0 auto;
}

.consolPopup .swich-main{
    display: flex;
}
/*.consolPopup .swich-main{
    display: flex;
    align-items: center;
    padding: 0px 13%;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4e4e4;
    border-radius: 10px;
    background: #f2f2f2;
    padding: 20px;
    width: 74%;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
}*/
.consolPopup .swich-main {
    display: flex;
    align-items: center;
    /* padding: 0px 13%; */
    /* padding-bottom: 20px; */
    /* border-bottom: 1px solid #e4e4e4; */
    border-radius: 10px;
    background: #f2f2f2;
    padding: 20px;
    width: 48%;
    justify-content: center;
    /* margin: 0 auto; */
    margin-bottom: 20px;
    flex-direction: column;
}
.consolPopup .switch-checkbox{
    margin-bottom: 10px;
	/*margin-right: 20px;*/
}

.consolPopup .switch-checkbox-text{
    font-family: 'Myriad-Pro-Light';
    font-size: 24px;
	text-align: center;
}

.consolPopup .switch {
  position: relative;
  display: inline-block;
  width: 150px;
  height: 50px;
  margin:  0;
}

.consolPopup .switch input {display:none;}

.consolPopup .slider {
  position: absolute;
  cursor: pointer;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cccccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.consolPopup .slider:before {
  position: absolute;
  z-index: 2;
  content: "";
  height: 46px;
  width: 46px;
  left: 2px;
  bottom: 2px;
  background-color: darkslategrey;
      -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.22);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.22);
  -webkit-transition: .4s;
  transition: all 0.4s ease-in-out;
}
.consolPopup .slider:after {
  position: absolute;
  left: 0;
  z-index: 1;
  content: "ON";
    font-size: 25px;
    text-align: left !important;
    line-height: 55px;
  padding-left: 0;
    width: 150px;
    color: #fff;
    height: 50px;
    border-radius: 100px;
    background-color: #ff6418;
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
    transition: all 0.4s ease-in-out;
}

.consolPopup input:checked + .slider:after {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  /*width: 235px;*/
  padding-left: 25px;
}

.consolPopup input:checked + .slider:before {
  background-color: #fff;
}

.consolPopup input:checked + .slider:before {
  -webkit-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
}

/* Rounded sliders */
.consolPopup .slider.round {
  border-radius: 100px;
}

.consolPopup .slider.round:before {
  border-radius: 50%;
}
.consolPopup .absolute-no {
    position: absolute;
    left: 0;
    color: darkslategrey;
    text-align: right !important;
    font-size: 25px;
    width: calc(100% - 25px);
    height: 50px;
    line-height: 55px;
    cursor: pointer;
}


/*Small switch*/
.consolPopup .switch2 {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 40px;
  margin-bottom:  15px;
}

.consolPopup .switch2 input {display:none;}

.consolPopup .slider2 {
  position: absolute;
  cursor: pointer;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cccccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.consolPopup .slider2:before {
  position: absolute;
  z-index: 2;
  content: "";
  height: 36px;
  width: 36px;
  left: 2px;
  bottom: 2px;
  background-color: darkslategrey;
      -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.22);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.22);
  -webkit-transition: .4s;
  transition: all 0.4s ease-in-out;
}
.consolPopup .slider2:after {
	position: absolute;
	left: 0;
	z-index: 1;
	content: "ON";
	font-size: 16px;
	text-align: left !important;
	line-height: 40px;
	padding-left: 0;
	width: 80px;
	color: #fff;
	height: 40px;
	border-radius: 100px;
	background-color: #ff6418;
	-webkit-transform: translateX(-40px);
	-ms-transform: translateX(-40px);
	transform: translateX(-40px);
	transition: all 0.4s ease-in-out;
}

.consolPopup .switch2 input:checked + .slider2:after {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  /*width: 235px;*/
  padding-left: 10px;
}

.consolPopup .switch2 input:checked + .slider2:before {
  background-color: #fff;
}

.consolPopup .switch2 input:checked + .slider2:before {
  -webkit-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
}

/* Rounded sliders */
.consolPopup .slider2.round2 {
  border-radius: 100px;
}

.consolPopup .slider2.round2:before {
  border-radius: 50%;
}
.consolPopup .absolute-no2 {
    position: absolute;
    left: 0;
    color: darkslategrey;
    text-align: right !important;
    font-size: 16px;
    width: calc(100% - 10px);
    height: 40px;
    line-height: 40px;
    cursor: pointer;
}
/*swich End*/

#consolPopup .modal-footer{
    text-align: left;
}

.guide_link a svg, .access-links .glink a svg{
    color:  #FFCC00;
    /*width:  28px;
    height:  28px;*/
	-webkit-filter: drop-shadow( 0 0 5px rgba(0, 0, 0, 1));
	filter: drop-shadow( 0 0 5px rgba(0, 0, 0, 1));
}

.accessibility-link a svg, .access-links .ablink a svg{
    /*color:  #00FFFF;*/
	color: #00ff66;
    /*width:  28px;
    height:  28px;*/
	-webkit-filter: drop-shadow( 0 0 5px rgba(0, 0, 0, 1));
	filter: drop-shadow( 0 0 5px rgba(0, 0, 0, 1));
}

.cancel-btn-right{
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:  80px;
    height:  74px;
    background: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: 0px 0px 5px -2px;
    transition: all 0.2s;
    padding: 10px;
    position: fixed;
    top: 47%;
    right: 0;
    z-index: 113;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    color:  #ffbc3f;
}
.cancel-btn-right span{
    font-family: 'Myriad-Pro';
    font-size: 11px;
    font-weight: bold;
    color: #3d7edb;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-top: 10px;
}
.cancel-btn-right:hover{
    text-decoration: none;
	background: #000 !important;
}

.cancel-btn-right.white{ background: #333; }
.cancel-btn-right.white span{ color: #fff; }

.cancel-btn-right-global{
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:  80px;
    height:  74px;
    background: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: 0px 0px 5px -2px;
    transition: all 0.2s;
    padding: 10px;
    position: fixed;
    top: 23%;
    right: 0;
    z-index: 113;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    color:  #ffbc3f;
}
.cancel-btn-right-global span{
    font-family: 'Myriad-Pro';
    font-size: 11px;
    font-weight: bold;
    color: #3d7edb;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-top: 10px;
}
.cancel-btn-right-global:hover{
    text-decoration: none;
	background: #000 !important;
}

.cancel-btn-right-global.white{ background: #333; }
.cancel-btn-right-global.white span{ color: #fff; }

.consolPopup .accessibility-tools{
    background: rgba(61,126,219,1);
    margin-top: 30px;
}
.consolPopup .accessibility-tools .sublevel2{
    display:  flex;
    justify-content: space-between;
}
.consolPopup .accessibility-tools .sublevel2 .tools-innr{
    padding:  10px;
    /* height: 90px; */
    width: 30%;
}

.consolPopup .accessibility-tools .sublevel2 .tools-innr h3{
    font-size: 1rem;
    color: #FFFFFF;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

#consolPopupImpairedContent .modal-body{
	max-height: calc(100vh - 65px);
    overflow-y: auto;
}

#consolPopupImpairedContent .modal-content.add-contrast-consolPopup{
	background: #333 !important;
    color: #FFFF00 !important;
}

.modal-open {
    padding-right: 0px !important;
}

@media only screen and (max-width: 767px) {
    .consolPopup {
        width: 100% !important;
    }
    .consolPopup .disability-all .disability{
        height: 230px;
    }
    .consolPopup .disability-all .disability.VisuallyImpaired,
    .consolPopup .disability-all .disability.HearingImpaired{
        background-size: 100%;
    }
	.consolPopup .swich-wrapper{
		max-width: 95%;
	}
	.consolPopup .swich-main{
        /* width: 95%; */
    }
	
}