.g-form {
	width: 100%;
	max-width: 600px;
	padding: 60px;
	background: #fcfcfc;
	box-shadow: 0 0 20px rgba(0,0,0, .2);
	margin: 0 auto;
        -webkit-box-sizing: unset !important;
        -moz-box-sizing: unset !important;
        box-sizing: unset !important;
}
.g-form__title {
	text-align: center;
	margin: 0;
	font-weight: 400;
	font-size: 2.0rem;
	text-transform: uppercase;
	line-height: 1.4;
	padding-bottom: 10px;
}
.g-form__title div{
	text-align: center;
	margin: 0;
	font-weight: 400;
	font-size: 1.4rem;
	text-transform: uppercase;
	line-height: 1.4;
	padding-bottom: 40px;
}
.g-form__title a {
	color: #fff;
}
.g-form__title_main {}
.g-form__preloader 
{ 
	height: 2px;
	width: 100%;
	position: relative;
	margin: 15px 0;
	opacity: 0;
}
.g-form__preloader:before {
	background: #e8a3bb;
	content: '';
	display: inline-block;
	position: absolute;
	left: 0;
	width: 50px;
	height: 2px;
	-webkit-animation: smartlidPreloader 3s infinite;
	animation: smartlidPreloader 3s infinite;
}
.g-form__title_respond {}
.g-form__inputs {width: 100%;}
.g-form__input-wrapper {
	margin-bottom: 0px;
	border: none;
	padding: 0;
	text-align: center;
}

.g-form__input-wrapper input, .g-form__input-wrapper textarea{
	width: 100%;
	padding: 0 15px;
	border: 1px solid #959595;
	border-radius: 3px;
	background: #f6f6f6;
	height: 50px;
	font: 1rem 'Roboto', sans-serif;
	outline: none;
	color: #333; 
	font-weight: 300;
}
.g-form__input-wrapper textarea {
	padding: 15px;
	height: 100px;
	resize: none;
}
.g-form__input-wrapper input:focus, .g-form__input-wrapper textarea:focus {
	border-color: #7055f0; 
}

.g-form__input-wrapper_hidden {
	display: none;
}
.g-form__button-wrapper {
	display: flex;
	justify-content: center;
}
.g-form__button {
	background: #e8a3bb;
	outline: none;
	border: none;
	border-radius: 2px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 30px;
	font: 400 .9rem 'Roboto', sans-serif;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	transition: .3s;
	box-shadow: 0 3px 10px rgba(0,0,0, .2);
}

.g-form__button:hover {
	transition: .3s;
	box-shadow: 0 1px 1px rgba(0,0,0, .2);
	color: #fff;
	background: #e48eac;
}


@media (max-width: 359px) {
	.g-form {
		padding: 15px;
	}
}

@-webkit-keyframes smartlidPreloader {
	0% {
		left: 0; }
		50% {
			left: -webkit-calc(100% - 50px);
			left: calc(100% - 50px); }
			100% {
				left: 0%; } 
			}

			@keyframes smartlidPreloader {
				0% {
					left: 0; }
					50% {
						left: -webkit-calc(100% - 50px);
						left: calc(100% - 50px); }
						100% {
							left: 0%; } 
						}
						



* {
  margin: 0;
  padding: 0;
  --transition: 0.15s;
  --border-radius: 0.5rem;
  --background: #ffc107-;
  --box-shadow: #efb7cb;
}


.cont-bg {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cont-title {
  margin-bottom: 1rem;
}

.cont-main {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.cont-checkbox {
  width: 115px;
  height:26px;
  border-radius: var(--border-radius);
  background: transparent;
  transition: transform var(--transition);
}

.cont-checkbox:first-of-type {
  margin-bottom: 0.75rem;
  margin-right: 0.75rem;
}

.cont-checkbox:active {
  transform: scale(0.9);
}

.cont-checkbox input {
  display: none;
}

input:checked + label {
  opacity: 1;
  box-shadow: 0 0 0 3px var(--background);
}

input:checked + label img {
  -webkit-filter: none; /* Safari 6.0 - 9.0 */
  filter: none;
}

input:checked + label .cover-checkbox {
  opacity: 1;
  transform: scale(1);
background: var(--box-shadow);
}

input:checked + label .cover-checkbox svg {
  stroke-dashoffset: 0;
}

label {
  display: inline-block;
  cursor: pointer;
  border-radius: var(--border-radius);
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0.9;
}

label img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  clip-path: polygon(0% 0%, 100% 0, 100% 81%, 50% 100%, 0 81%);
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

label .cover-checkbox {
  position: absolute;
  left: 5px;
  top: 3px;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--box-shadow-);
  border: 2px solid #fff;
  transition: transform var(--transition),
    opacity calc(var(--transition) * 1.2) linear;
  opacity: 1;
  transform: scale(1);
}

label .cover-checkbox svg {
  width: 13px;
  height: 11px;
  display: inline-block;
  vertical-align: top;
  fill: none;
  margin: 5px 0 0 3px;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  transition: stroke-dashoffset 0.4s ease var(--transition);
  stroke-dashoffset: 16px;
}

label .info {
    color: #000;
    text-align: left;
    padding: 4px 30px;
}

@media (max-width: 480px) {

*, *:before, *:after {

}
	html, body {
		padding: 0px;
	}
	.g-form {
		width: 240px;
	}
	.g-form__title {
		font-size: 1rem;
	}

.cont-checkbox {
    width: 100px;
    margin-left: 0px;
	}
.g-form__inputs {}
}




						