@font-face {font-family: 'bpg_extrasquare_2009';transform: scale(1, 0.8); font-style: normal; src: url(./fonts/bpg_extrasquare_2009.ttf) format('truetype'); }


:root{
  --color-toggle-off: #fff;
  --color-toggle-on: #53d769;
  --font-main: 'bpg_extrasquare_2009';
  --toggle-width: 70px;
  --toggle-height: 40px;
}

*:not(i) { font-family: var(--font-main) }

body {
	background: black;	
}

body::after {
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	opacity: 0.9;
	right: 0;
	position: fixed;
	z-index: -1;  
	background-image: url("/assets/img/background.png");
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.form-control {
	min-height: 45px;
}

.soclial-question-label {
	color: #fff;
}


.image-loader {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  flex-direction: column;
  bottom: 0;
  left: 0;
  right: 0;
  color:#fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}



.loader {
  border: 12px solid #f3f3f3; /* Light grey */
  border-top: 12px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}






/* ********************************************************** Right Form ********************************************************** */
.right-column, 
.left-column {
	display: flex;
	flex-direction: column;
	/*justify-content: center;*/
	align-items: center;
  padding-top: 4rem;
	/*height: calc(100vh - 1px);*/
}

.name-form,
.images-div {
	width: 100%;
  position: relative;
}


/* Right */
.dropzone-main {
    width: 100%;
    height: calc(100vh / 3);
    padding: 10px;
    background: #fff;
	transition: 0.1s all ease-in-out;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.dz-image {
	display: flex;
	justify-content: center;
}
.dz-preview {
	height: 100%;
	max-width: 100%;
}
.dz-preview .dz-image {
	text-align: center;
	height: 100%;
}

[data-dz-thumbnail]:hover {
	transform: scale(1.2);
}
[data-dz-thumbnail] {
	max-width: 100%;
	border-radius: 8px;
	flex-grow: 1;
	max-height: 100%;
	transition: 0.1s all ease-in-out;
}

.dropzone-others-divs:not(.dz-max-files-reached):hover, 
.dropzone-main:not(.dz-max-files-reached):hover {
	cursor: pointer;
	background: rgba(0,0,0,0.1);
}
.upload-plus, h6 {
	pointer-events: none;
}
.dz-max-files-reached h6, 
.dz-max-files-reached .upload-plus {
	display: none;
}
.dropzone-others {
	display: flex;
	margin-top: 1rem;
	height: 5rem;
	flex-direction: row;
	justify-content: space-between;
}
.dropzone-others-divs {
  width: 24%;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  align-items: center;
  display: flex;
 transition: 0.1s all ease-in-out;
}

.dz-details, 
.dz-error-message,
.dz-progress,
.dz-success-mark,
.dz-error-mark {
  display: none;
}
.submit-button {
  padding: 1rem 1.5rem;
  font-size: 15pt;
}











/* ********************************************************** Switches ********************************************************** */
.form-switch {
  display: inline-block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.form-switch i {
  position: relative;
  display: inline-block;
  margin-right: .5rem;
  width: var(--toggle-width);
  height: var(--toggle-height);
  background-color: #e6e6e6;
  border-radius: 23px;
  vertical-align: text-bottom;
  transition: all 0.1s linear;
}
.form-switch i::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(var(--toggle-width) - 4px);
  height: calc(var(--toggle-height) - 4px);
  background-color: #fff;
  background-position: center;
  background-size: contain;
  border-radius: 23px;
  transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
  transition: all 0.25s linear;
}
.form-switch i::after {
  content: "";
  position: absolute;
  left: 0;
  width: calc(var(--toggle-height) - 4px);
  height: calc(var(--toggle-height) - 4px);
  background-color: #fff;
  background-position: center;
  background-size: contain;
  border-radius: 50%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
  transform: translate3d(2px, 2px, 0);
  transition: all 0.2s ease-in-out;
}
.form-switch:active i::after {
  width: calc(var(--toggle-height) + 2px);
  transform: translate3d(2px, 2px, 0);
}
.form-switch:active input:checked + i::after { transform: translate3d(18px, 2px, 0); }
.form-switch input { display: none; }
.form-switch input:checked + i { background-color: #4BD763; }
.form-switch input:checked + i::before { transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0); }
.form-switch input:checked + i::after { transform: translate3d(calc(var(--toggle-width) - var(--toggle-height) + 2px), 2px, 0); }


i.instagram-switch::after{
	background-image: url('/assets/img/instagram-icon.png');
}
i.facebook-switch::after {
	background-image: url('/assets/img/facebook-icon.png');
}



/* ********************************************************** Footer ********************************************************** */
footer {
	padding: 1rem;
	position: fixed;
	bottom: 0;
	left:0;
	right: 0;
}
footer img {
	max-width: 7rem;
  max-height: 80px;
}
.container {
  padding-bottom: 2rem;
}


@media (max-width: 576px) {
  .right-column, 
  .left-column {
    height: unset;
    /*margin-bottom: 3rem;*/
  }
  .container {
    padding-bottom: unset;
  }
  footer {
    position: unset
  }

  footer img {
    max-width: 100%;
    /*max-height: 70px;*/
  }
}
