.container {
	margin: 0 auto;
	max-width: 1104px;
	width: 96%;
}

.down-block {
	background: #FFF9F6;
	padding: 20px 0;
}

.down-cont {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.down-txt {
	font-size: 3.4rem;
	line-height: 43px;
	font-weight: 700;
	color: #000000;
}

.download-block {
	margin: 60px 0;
}

.heading2 {
	font-size: 2.2rem;
	line-height: 28px;
	font-weight: 700;
	margin-bottom: 40px;
}

.download-list {
	margin-top: 58px;
}

.download-list ul {
	border: 1px solid #EAEAEA;
	border-radius: 10px;
/*	overflow: hidden;*/
}

.download-list ul li {
	border-bottom: 1px solid #EAEAEA;
	padding: 14px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.download-list ul li:last-child {
	border: none;
}

/*.download-list ul li:nth-child(odd) {
	background: #fff;
}

.download-list ul li:nth-child(even) {
	background: #F5F6F6;
}*/

.download-wrap {
	display: flex;
	align-items: center;
	margin-right: 10px;
}

.download-wrap a {
	display: flex;
}

.download-wrap span {
	font-size: 1.6rem;
	line-height: 20px;
	color: #282828;
	font-weight: 400;
	cursor: default;
/*	padding-left: 30px;*/
}

.share-wrap {
	display: flex;
	align-items: center;
}

.mail {
	margin-right: 10px;
}

.dropdown-cont {
	display: flex;
	justify-content: space-between;
/*	flex-wrap: wrap;*/
}

.select-input-block {
	width: 44%;
}

.go-btn {
	width: 8%;
	display: flex;
	justify-content: center;
	align-items: center;
}


/***Dropdown Start***/
.dropdown-block {
	width: 44%;
	position: relative;
	height: 5.4rem;
}

.input-block label {
    font-size: 1.2rem;
/*    line-height: 2.1rem;*/
    font-weight: 500;
    color: #282828;
    position: absolute;
    transition: .3s ease;
    top: 2.1rem;
    left: 1rem;
    background: #fff;
    padding: 0 0.5rem;
    color: #838383;
    cursor: auto;
    z-index: 2;
}

.input-block.dropdown-block.focus label, .input-block.dropdown-block.transform label {
	top: -10px;
}

.dropdown {
    border: 1px solid #C9C9C9;
    height: 5.4rem;
    border-radius: 5px;
    width: 100%;
    position: relative;
}

.dropdown:hover {
	border: 1px solid #282828;
}

.dropdown-block.active .dropdown {
	border: 2px solid #EC6625;
}

.input-block.dropdown-block.active label {
	color: #EC6625;
}

.dropdown-block .dropdown:after {
	content:'';
	position: absolute;
	top: 1.8rem;
	right: 1.5rem;
	width: 1rem;
	height: 1rem;
	border: 2px solid #404040;
    border-right-width: 0;
    border-top-width: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    padding: 0;
}

.dropdown-block.active .dropdown:after {
	top: 2rem;
	border: 2px solid #404040;
    border-left-width: 0;
    border-bottom-width: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

.selected {
    height: 5.4rem;
    padding: 1.5rem;
    width: 100%;
    font-size: 1.6rem;
    line-height: 21px;
    font-weight: 500;
    display: block;
}

.custom-dropdown-list {
  display: none;
  height: auto;
  overflow-y: hidden;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  position: relative;
  z-index: 3;
  background:#fff;
}

.custom-dropdown-list li {
	font-size: 1.6rem;
	line-height: 2.8rem;
	font-weight: 500;
	color: #282828;
	padding: 1rem 1.5rem;
	background: #fff;
	width: 100%;
	height: 5rem;
	cursor: pointer;
	position: relative;
}

.custom-dropdown-list li:nth-child(even) {
	background: #F5F6F6;
}

.custom-dropdown-list li:hover {
	background: #EAEAEA;
    color: #282828;
}

.custom-dropdown-list li.select-list {
	background: #F5F6F6;
}

.custom-dropdown-list li.select-list:after, .custom-dropdown-list li.select-list:before{
	content: '';
    position: absolute;
    bottom: 1.7rem;
    right: 1.9rem;
    height: 1.5rem;
    width: 0.2rem;
    display: block;
    background: #6C6C6C;
    border-radius: 5px;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
}

.custom-dropdown-list li.select-list:before{
	height:0.8rem; 
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
	-o-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg); 
	top: 2.4rem;
    right: 2.6rem;
}
/***Dropdown End***/
.primary-btn {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	color: #fff;
	padding: 1.1rem 2.4rem;
	font-size: 1.6rem;
	background: #EC6625;
	border-radius: 5px;
	text-decoration: none;
	outline: none;
	border: 3px solid transparent;
	font-weight: 700;
	text-align: center;
}

.primary-btn:hover, .primary-btn:focus, .primary-btn:focus-visible, .primary-btn:focus-within, .primary-btn:active, .primary-btn:visited {
	background: #FD7B20;
	color: #fff;
}

.secondary-btn {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	padding: 1.3rem 2.4rem;
	font-size: 1.6rem;
	border-radius: 5px;
	text-decoration: none;
	outline: none;
	border: 1px solid #EC6625;
	font-weight: 700;
	text-align: center;
	background: #fff;
	color: #EC6625;
}

.secondary-btn:hover {
	position: relative;
	background: #FFF2EB;
	border: 1px solid #EC6625;
	color: #EC6625;
}

.download-list .tooltip {
  position: relative;
  display: inline-block;
/*	  border-bottom: 1px dotted black;*/
  opacity: 1;
  z-index: 2;
}

.download-list .tooltip .tooltiptext {
  visibility: hidden;
  width: 98px;
  height: 35px;
  background-color: #000;
  font-size: 1.2rem;
  line-height: 15px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  border-radius: 5px;
/*  padding: 6px 10px 8px;*/
  position: absolute;
  z-index: 99;
  bottom: 45px;
  right: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-list .tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.download-list .tooltip:hover .tooltiptext {
  visibility: visible;
}

.download-list .share.tooltip .tooltiptext {
	 padding: 0;
	 width: 74px;
	 height: 35px;
	 right: -20px;
}

.share-wrap .share, .share-wrap .mail {
	background: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.share-wrap .share:hover, .share-wrap .mail:hover {
	background: #F5F6F6;
    border-radius: 6px;
}

.il-loader {
  	display: block;
    height: 100%;
    position: fixed;
 /*   left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);*/
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 100000;
}

.il-loader-inner {
	    width: 100px;
	    display: flex;
	    justify-content: center;
	    position: absolute;
	    left: 50%;
	    top: 50%;
	    transform: translate(-50%,-50%);
	    text-align: center;
	}

.share img {
	position: relative;
	top: 2px;
}
body .success-block{
	z-index: 9999;
}

@media (max-width: 767px) {
	.heading2 {
		font-size: 1.8rem;
	}

	.download-block {
		margin: 40px 0;
	}

	.dropdown-cont {
		flex-direction: column;
	}

	.dropdown-cont .dropdown-block {
		width: 100%;
		margin-bottom: 4rem;
	}

	.dropdown-cont .go-btn {
		width: 100%;
	}

	.download-list {
		margin-top: 40px;
	}

	.download-wrap span {
		font-size: 1.4rem;
/*		padding-left: 20px;*/
	}

	.down-block img {
		width: 140px;
		height: 79px;
	}

	.down-txt {
		font-size: 1.6rem;
		line-height: 20px;
	}
}

@media(max-width: 480px){
	.download-wrap span{
		font-size: 1.1rem;
	}
	.selected, .custom-dropdown-list li{
		font-size: 1.2rem;
	}
	.download-list ul li{
		padding: 14px 10px;
	}
}
@media(max-width: 375px){
	.download-wrap span{
		font-size: 1rem;
	}
}