/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
:root{
	--color-primary: #FED03E;
}
html{
	scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}
body{
	
	width: 100%;
	min-height: 100%;
	overflow-x: hidden;
}
.copy-rights-by a{
	color:#515151;
	text-decoration:underline;
}

.span-primary span{
	color: var(--color-primary);
	text-decoration: underline;
}
.win-form .elementor-shortcode{
	background: #ffffff;
	border-radius: 4px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 585px;
	max-width: 100%;
	margin: auto;
	padding: 40px 50px 20px 50px;
}
.win-form .elementor-shortcode > .wpcf7 {
	position: relative;
	width: 100%;
}

.wpcf7-form .form-input {
  width: 100%;
  padding: 12px 24px;
  background-color: #FAFAFA;
  border: 1px solid #FAFAFA;
  border-radius: 4px;
  outline: none;
}
.wpcf7-form .form-input:focus {
	border-color: #ddd;
}
.wpcf7 .wpcf7-submit.cta-button {
    background: #F86200;
    color: #fff;
    font-weight: 400;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    width: 360px;
    cursor: pointer;
    max-width: 100%;
    display: block;
    margin: 0px;
	white-space: pre-wrap;
}
.wpcf7 .wpcf7-submit.cta-button:hover {
  background: #F86200;
}
.wpcf7 .wpcf7-submit.cta-button:disabled{
	cursor: not-allowed;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item{
	margin-left: 0px;
}
.wpcf7 .wpcf7-acceptance label{
	display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
	line-height: 20px;
}
.wpcf7 .wpcf7-acceptance label input{	
	width: auto;
    margin: 0px;
}
.wpcf7 .wpcf7-acceptance label a{
	color: #122B54;
	font-weight: 500;
}
.custom-file-upload {
  border: 1px solid #FAFAFA;
  border-radius: 4px;
  padding: 12px 24px;
  position: relative;
  background: #fafafa;
  cursor: pointer;
  transition: 0.3s;
}
.custom-file-upload.drag-over, .custom-file-upload:hover {
  border-color: #c34800;
  background: #fff4ee;
}
.custom-file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.custom-file-upload .file-label {
 	 font-size: 14px;
  	color: #414141;
	display: flex;
	flex-wrap: nowrap;
	gap: 15px;
	text-align: left;
	align-items: center;
	line-height: 18px;
}
.custom-file-upload .file-label a {
  color: #003781;
  font-weight: 600;
  text-decoration: underline;
}


.custom-file-upload .file-label a:hover {
  text-decoration: underline;
	color: #008ed6;
}

.upload-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 5px;
}
.custom-file-upload p{
	margin-bottom: 0px;
}

.submit-wrapper{
	display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 30px;
}
.submit-wrapper .wpcf7-spinner{
	position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12px;
    margin-top: -20px;
}
/* Hide the native checkbox */
.wpcf7-acceptance input[type="checkbox"] {
  display: none;
}

/* Custom checkbox wrapper */
.wpcf7-acceptance .wpcf7-list-item-label {
    position: relative;
    padding-left: 38px;
    cursor: pointer;
    font-size: 14px;
    color: #414141;
    display: inline-block;
    line-height: 28px;
}

/* Checkbox box */
.wpcf7-acceptance .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    background: #fff;
    transition: all 0.2s ease;
}

/* Tick mark when checked */
.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background: #F86200;
    border-color: #F86200;
}

.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: "✓";
  position: absolute;
  left: 7px;
  top: 1px;
  font-size: 16px;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .mobile-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
	.win-form .elementor-shortcode{
		padding: 20px;
	}
	.wpcf7 .wpcf7-submit.cta-button {
		max-width: 100%;
		width: 100%;
	}
	.wpcf7-acceptance .wpcf7-list-item-label {
		line-height: 20px;
	}
	.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::after{
		top: 5px;
	}
}