* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
.success-massages {
    text-align: center;
    margin-top: 37px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  / Firefox /
  -moz-appearance: textfield;
}
 
.header{
    color: red;
    text-align: left;
    display: none;
}
.subtitle p {
    padding: 0px 100px;
    margin-bottom: 29px;
}
/********Header section closed here**********/

.main-upload-form-sec{
	    display: flex;
    	gap: 20px;
	max-width: 1500px;
	margin: auto;
}

.photo-sec {
    border: 2px dashed white;
    cursor: pointer;
	background: white;
}

.photo-sec p {
    width: 600px;
    margin: 0 auto;
}

.photo-sec h5 {
    color: rgb(110, 11, 6);
}

.main-form-box{
	background: #286eb6;
}

.imgUploadBox {
    width: 100px;
    height: 100px;
    border: 1px solid rgb(110, 11, 6);
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    margin: auto 5px;
    transition: background-color 250ms ease 0s;
   background-size: cover;
    background-repeat: no-repeat;
}

.imgUploadBox:hover {
    background-color: rgba(110, 11, 6, 0.25);
    color: #fff;
}

.errorMassage {
    color: rgb(255, 37, 37);
    margin-top: 2px;
}

.hide {
    display: none;
}
.subtitle.is-3 {
    font-size: 2rem;
    font-weight: 700;
}


div#form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 10px;
}

input.inputFild {
    /* max-width: 800px; */
    border-radius: 10px;
    margin: 0 auto;
    height: 32px;
    min-width: 723px;
    padding: 10px;
}
 .button:hover {
    border-color: #b5b5b5;
    color: #ffffff;
}

#videoPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#popupVideo {
    width: 80%;
    height: 80%;
    margin: auto;
    display: block;
}

#closeBtn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

.imgUploadBox .playBtn {
    margin: auto 20px;
    color: #fff;
    display: none;

}

.imgUploadBox .delete-button {
    color: #b73c3c;
    display: none;

}

#demoImg img {
    max-width: 40%;
}

.width_800.box {
	max-width: 800px;
	margin: 0 auto;
    margin-top: 30px;
}
#uploadImgSection .form-wrap {
	display: flex;
	gap: 10px;
}
#uploadImgSection .field.is-inline-block-desktop {
	width: 100%;
}
/* loader .css  */
.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #FFF #FFF transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  .loader::after,
  .loader::before {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #FF3D00 #FF3D00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
  }
  .loader::before {
    width: 32px;
    height: 32px;
    border-color: #FFF #FFF transparent transparent;
    animation: rotation 1.5s linear infinite;
  }
      
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
/*-----------Media--Screen----------*/

@media only screen and (max-width: 1268px) {
	
	
.main-upload-form-sec{
	    display: flex;
		flex-wrap: wrap;
	}
	
}

@media only screen and (max-width: 768px) {
    .photo-img {
        display: none;
    }

    .photo-sec p {
        width: 100%;
    }
    #uploadImgSection .form-wrap {
        gap: 0;
        flex-direction: column;
        margin-bottom: 12px;
    }



}

@media only screen and (max-width: 480px) {

    .imgUploadBox {
        width: 120px;
        height: 120px;
    }

    .photo-sec {
        border: none;
        padding: 16px 0 !important;
    }



}