/*------Help Desk Contact us Page---*/

#helpdesk {
	padding: 130px 0px 100px 0px;
}
.helpdesk-item {
	/*margin: 0px 0 0px;*/
	padding: 15px;
	-webkit-transition: box-shadow .25s ease-in-out;
	transition: box-shadow .25s ease-in-out;
	box-shadow: 0 0px 10px 2px rgba(115, 115, 115, 0.14), 0 9px 6px -3px rgba(148, 148, 148, 0.12), 0 0px 5px 0px rgba(160, 160, 160, 0.2);
}
.helpdesk-item:hover {
	    box-shadow: 0 0px 11px 3px rgba(115, 115, 115, 0.14), 10px 7px 4px -3px rgba(148, 148, 148, 0.12), 0 7px 2px 0px rgba(160, 160, 160, 0.2);
}
.helpdesk-item .content {
	position: relative;
	padding-left: 0px;
}
.helpdesk-item .content:before {
	position: absolute;
	top: 0;
	right: -15px;
	width: 1px;
	height: 100%;
	background: rgba(0,0,0,.09)
}
.helpdesk-item:last-child .content:before {
	display: none
}
.helpdesk-item .icon {
	background-color: #19acc2;
	width: 100px;
	height: 100px;
	margin: -50px auto 0;
	padding-left: 10px;
	border: 10px solid #fff;
	border-radius: 50%;
	-webkit-transition: background-color .25s ease-in;
	transition: background-color .25s ease-in
}
.helpdesk-item:hover .icon {
	background-color: #f89c1d;
	border-width: 10px;
	padding: 10px
}
.helpdesk-item .icon i.fa {
	display: table-cell;
	vertical-align: middle;
	width: 60px;
	height: 60px;
	padding-top: 20px;
	margin: 0 auto;
	font-size: 30px;
	color: #FFF;
	border-radius: 50%;
	text-align: center;
	-webkit-transition: .25s ease-in;
	transition: .25s ease-in
}
.helpdesk-item:hover .icon i.fa {
	color: #fff;
	font-size: 40px;
	padding-top: 3px;
}
.helpdesk-item .heading {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 500;
	text-align: center
}
.helpdesk-item .desc {
	text-align: center;
	margin: 0 0 20px
}
.helpdesk-item .read-more-btn {
	text-align: center
}


/***************CONTACT FORM***************/

.do-contact-form-wrapper {
	width: 70%;
	padding-right: 0px;
	float: left;
	overflow: hidden;
}
.do-contact-form-wrapper h3 {
	font-family:exo-2;
	font-size: 25px;
	font-weight: 700;
	color: #000000;
	margin-top: 0;
	margin-bottom: 45px;
}
.do-contact-form-wrapper form, .do-contact-form-wrapper .do-contact-form {
	overflow: hidden;
}
.do-contact-form-wrapper form input:not([type='submit']), .do-contact-form-wrapper .do-contact-form input:not([type='submit']) {
	width: calc(100% / 3 - 15px);
	height: 45px;
	font-family:exo-2;
	font-size: 13px;
	color: #888888;
	font-weight: 400;
	line-height: 45px;
	padding: 0 15px;
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
	background-color: #ffffff;
    border: 1px solid #CCC;
	outline: 0;
}
.do-contact-form-wrapper form textarea, .do-contact-form-wrapper .do-contact-form textarea {
	width: calc(100% - 15px);
	font-family:exo-2;
	font-size: 13px;
	color: #888888;
	font-weight: 400;
	padding: 0px 15px;
	float: left;
	margin-bottom: 40px;
	background-color: #ffffff;
    border: 1px solid #CCC;
	outline: 0;
}

.full-width {
    width: 100% !important;
}
.btntwai{
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 26px;
	cursor: pointer;
    height: 45px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    border-radius: 0px;
    transition: none;
    border-width: 0px;
    margin: 0px;
    letter-spacing: 0px;
    background: rgb(248, 156, 32);}
	
.linkpage { color: #a5a5a5 !important;}	

.freetrial {
    height: 45px;
    font-family: exo-2;
    font-size: 13px;
    color: #888888;
    font-weight: 400;
    line-height: 45px;
    padding: 0 15px;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
    background-color: #ffffff;
    border: 1px solid #CCC;
    outline: 0;
}
.full-width {
    width: 100% !important;
}
.freetrialh {
    font-size: 18px !important;
    font-family: arial !important;
    font-weight: 600 !important;
    color: #19acc2 !important;
    text-align: center;
}

/*---------------------------Checkbox style----------------------------*/

.inputGroup {
  background-color: #fff;
  display: block;
  margin: 10px 0;
  position: relative;
}
.inputGroup label {
    padding: 6px 15px;
    width: 100%;
    display: block;
    background: #12a9c0;
/*	border: solid 1px #4285f4;*/
    text-align: left;
	font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
}
.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: '';
  background-color: #18244e;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}
.inputGroup label:after {
  width: 32px;
  height: 32px;
  content: '';
  border: 2px solid #D1D7DC;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 2px 3px;
  border-radius: 10%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}
.inputGroup input:checked ~ label {
  color: #fff;
}
.inputGroup input:checked ~ label:before {
  -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
          transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}
.inputGroup input:checked ~ label:after {
     background-color: #ffb100;
    border-color: #ffb100;
}
.inputGroup input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.addcheckform {
  padding: 0 16px;
  max-width: 100%;
  margin: 15px auto;
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
}

.checkoutcontact {
    background: #E4E4E4;
    width: 100%;
    float: left;
    margin-bottom: 15px;
}
.checkoutcode {
    width: 15%;
    padding: 12px 6px;
	text-align:center;
    float: left;
}
.checkoutcontactin {
    width: 85%;
    float: left;
}
.checkoutinput {
    margin-bottom: 0px !important;
}

label {
    color: #000;
    cursor: auto;
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

.rqrstar{ color: #F00;}

.aothankyou {
    font-size: 90px !important;
    font-family: arial !important;
    font-weight: 600 !important;
    color: #19acc2 !important;
    text-align: center;
	line-height:90px;
}

.thankyoyp{    text-align: center;
    font-size: 24px;
	    margin-bottom: 50px;
    font-weight: bold;
    color: #606161;}
	
.iberes{ line-height:54px !important;}	
.accessoneapi{width:100% !important; float:left !important; margin:0px !important; padding:0px !important; font-size:12px !important;}