
.header__nav {
	width: 555px;
}
.btn {
	cursor: pointer;
	user-select: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	border: 1.5px solid transparent;
	padding: 6px 12px;
	transition: none;
}
.btn:hover {
	transition: all .3s ease-out;
}
.btn-border-white {
	color: #fff;
	border-color: #fff;
}
.btn-white {
	background-color: #fff;
	color: #44120D;
	/* max-width: 200px; */
	/* width: 100%; */
}
.btn-white--disabled,
.btn-white:hover {
	opacity: 0.2;
}
.black-btn2 {
	background: #131313;
	color: #FFFFFF;
}
.btn-border-white:hover,
.btn-border-white--disabled {
	opacity: 0.5;
}
.btn-border-white--disabled,
.btn-white--disabled {
	cursor: default;
}
.btn-icon {
	margin-right: 10px;
}
.two-btn {
	display: inline-flex;
}
.two-btn .btn:first-child {
	margin-right: -1px;
	border-radius: 12px 0px 0px 12px;
}
.two-btn .btn:last-child {
	border-radius: 0px 12px 12px 0px;
	margin-left: -1px;
}
.block-btn {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}
.main-block {
	min-height: 100vh;
	height: 100%;
	padding: 100px 25px 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.take-selfie {
	max-width: 590px;
	width: 100%;
	position: relative;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}
.take-selfie__preview {
	position: relative;
	margin-bottom: 25px;
	/* flex: auto; */
	display: flex;
	min-height: 400px;
/*	height: calc(100vh - 100px - 25px - 80px - 54px - 46px);*/
	aspect-ratio: 1/1;
}
.take-selfie__preview::after,
.take-selfie__preview::before,
.take-selfie__preview-angle::after,
.take-selfie__preview-angle::before {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	border-width: 3px;
	border-style: solid;
	color: #fff;
}
.take-selfie__preview::after,
.take-selfie__preview::before {
	top: 0;
}
.take-selfie__preview-angle::after,
.take-selfie__preview-angle::before {
	bottom: 0;
}
.take-selfie__preview::before {
	border-width: 3px 0 0 3px;
	left: 0;
}
.take-selfie__preview::after {
	border-width: 3px 3px 0 0;
	right: 0;
	display: flex;
}
.take-selfie__preview-angle {
	position: relative;
	padding: 13px;
	display: flex;
	width: 100%;
}
.take-selfie__preview-angle::before {
	border-width: 0 0 3px 3px;
	left: 0;
}
.take-selfie__preview-angle::after {
	border-width: 0 3px 3px 0;
	right: 0;
}
.take-selfie__holder {
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.take-selfie__holder > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.take-selfie__holder-text {
	color: #fff;
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 30px;
}
.take-selfie__holder-img {
	margin-bottom: 0;
}
.take-selfie__control {
	position: absolute;
	left: -126px;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.take-selfie__control--disabled {
	opacity: 0.3;
}
.take-selfie__control-group {
	position: relative;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
}
.take-selfie__control-group:not(:last-child)::before {
	content: '';
	width: 26px;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.take-selfie__control-btn {
	margin-bottom: 10px;
	width: 46px;
	height: 46px;
	border: 2px solid #fff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.take-selfie__control-btn:hover {
	opacity: 0.5;
}
.selfie-avatar {
	width: 400px;
	height: 400px;
	padding: 75px;
	background-color: #fff;
	border-radius: 50%;
	margin-bottom: 40px;
}
.selfie-avatar img {
	object-fit: contain;
}
.take-selfie__avatar {
	background-color: #fff;
	display: flex;
	width: 100%;
}
.take-selfie__avatar img {
	margin: auto;
	object-fit: contain;
	/* width: 100%; */
}
.custom-radio {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.custom-radio__input {
	position: absolute;
	opacity: 0;
	z-index: -1;
}
.custom-radio__fake-input {
	display: flex;
	width: 20px;
	min-width: 20px;
	height: 20px;
	border: 1.5px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	margin-right: 15px;
}
.custom-radio__fake-input::before {
	content: '';
	background-color: #fff;
	width: 10px;
	min-width: 10px;
	height: 10px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	opacity: 0;
	transition: all .3s ease-out;
}
.custom-radio__input:checked + .custom-radio__fake-input::before {
	opacity: 1;
}
.take-selfie__radio-btns {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.take-selfie__form {
	padding: 68px;
	width: 100%;
}
.take-selfie__form .black-btn2 {
	width: 100%;
	margin-bottom: 15px;
	height: 46px;
}
.take-selfie__form-title {
	color: #fff;
	font-weight: 400;
	font-size: 14px;
	line-height: 23px;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	text-align: center;
	justify-content: space-between;
}
.take-selfie__form-title::before,
.take-selfie__form-title::after {
	content: '';
	height: 1px;
	flex: 1;
	background-color: #fff;
}
.take-selfie__form-title::before {
	margin-right: 17px;
}
.take-selfie__form-title::after {
	margin-left: 17px;
}
.input-row {
	display: flex;
	justify-content: space-between;
}
.input-row__column {
	width: 48.1%;
	margin-top: 15px;
}
.main-block.workspeace {
	align-items: unset;
	justify-content: unset;
	flex-direction: row;
	padding-top: 100px;
}
.btn.btn-hover.active {
	border: 2px solid #fff;
}
.recent-selfies {
	width: 100%;
}
.recent-selfies__title {
	color: #fff;
	margin-bottom: 50px;
	text-align: center;
}
.recent-selfies__list{
	display: flex;
	flex-wrap: wrap;
/*	justify-content: space-between;*/
	padding: 0 0 35px;
	margin-left: -10px;
	margin-right:-10px;
    width: 100%;
}

.white-btn {
	width: 100%;
	background-color: #fff;
	color:  #222222;
}

.recent-selfies__item {
/*	width: 24.25%;*/
	/* padding: 45px; */
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
/*	margin-bottom: 1.25%;*/
/*	margin-right: 10px;*/
	margin: 10px;
	width: calc(25% - 20px);
	overflow: hidden;
	border-radius: 12px;
	height: 100%;
}

.recent-selfies__item::after {
	content: "";
    position: absolute;
	background: linear-gradient(180deg, rgba(78, 28, 23, 0) 65.46%, rgba(68, 18, 13, 0.8) 100%);
    z-index: 1;
    width: 100%;
    height: 100%;
	pointer-events: none;
}
.recent-selfies__item-wrap {
	width: 100%;
	padding-bottom: 100%;
	position: relative;
	cursor: pointer;
}
.recent-selfies__item-wrap img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.mr-45 {
	margin-right: 45px;
}
.take-selfie__form-text {
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	padding: 30px 0 15px;
}
.take-selfie__form-wrap-radio {
	display: flex;
	color: #fff;
}
.take-selfie__form-wrap-radio .module-chek {
	margin-right: 30px;
}
.load-wrap {
	width: 110px;
	margin: 0 auto 80px;
}

.circle {
	display: inline-block;
	height: 10px;
	width: 10px;
	margin-right: 10px;
	background-color: #fff;
	border-radius: 50%;
	-webkit-animation: loading 1.6s infinite;
	-moz-animation: loading 1.6s infinite;
	-o-animation: loading 1.6s infinite;
	animation: loading 1.6s infinite;
}

.load-wrap .circle:nth-child(1) {
	-webkit-animation-delay: .1s;
	-moz-animation-delay: .1s;
	-o-animation-delay: .1s;
	animation-delay: .1s;
}

.load-wrap .circle:nth-child(2) {
	-webkit-animation-delay: .3s;
	-moz-animation-delay: .3s;
	-o-animation-delay: .3s;
	animation-delay: .3s;
}

.load-wrap .circle:nth-child(3) {
	-webkit-animation-delay: .5s;
	-moz-animation-delay: .5s;
	-o-animation-delay: .5s;
	animation-delay: .5s;
}

.load-wrap .circle:nth-child(4) {
	-webkit-animation-delay: .7s;
	-moz-animation-delay: .7s;
	-o-animation-delay: .7s;
	animation-delay: .7s;
}

  /* Keyframes */

  @-webkit-keyframes loading {
	0%, 100% {
	  -webkit-transform: scale(0.0);
	}
	50% {
	  -webkit-transform: scale(1.0);
	}
  }

  @-moz-keyframes loading {
	0%, 100% {
	  -moz-transform: scale(0.0);
	}
	50% {
	  -moz-transform: scale(1.0);
	}
  }

  @-o-keyframes loading {
	0%, 100% {
	  -o-transform: scale(0.0);
	}
	50% {
	  -o-transform: scale(1.0);
	}
  }

  @keyframes loading {
	0%, 100% {
	  transform: scale(0.0);
	}
	50% {
	  transform: scale(1.0);
	}
  }

/* transfer */
.transfer {
	max-width: 420px;
	width: 100%;
	margin: 33px auto 30px;
	color: #fff;
	text-align: center;
}
.transfer__title {
	font-weight: 600;
	font-size: 36px;
	line-height: 44px;
	margin-bottom: 40px;
}
.transfer_avatar {
	display: flex;
	width: 250px;
	height: 250px;
	margin: 0 auto 40px;
	padding: 30px;
	background-color: #fff;
}
.transfer_avatar--successfully {
	width: 200px;
	height: 200px;
	position: relative;
}
.transfer_avatar--successfully::before {
	content: '';
	position: absolute;
	right: 10px;
	top: 10px;
	background-color: #20D532;
	background-image: url(../img/check.svg);
	background-position: center;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	border-radius: 50%;
}
.transfer_avatar img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.transfer_text {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 35px;
}
.transfer_text strong {
	font-weight: 600;
}
.custom-radio--img {
	margin-bottom: 10px;
}
.custom-radio--img .custom-radio__fake-input {
	margin-right: 12px;
}
.custom-radio__img-label {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	overflow: hidden;
}
.custom-radio__img-label img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.take-selfie__control.take-selfie__control--img {
	left: -170px;
}
.btn-320 {
	min-width: 320px;
}

/* new control panel */
.take-selfie__control-title {
	font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
	padding: 8px 0 25px;
}
.take-selfie__control.take-selfie__control--right {
	left: calc(100% + 50px);
	min-width: max-content;
	align-items: flex-start;
}
.custom-radio__take-photo-label {
	width: 100px;
	height: 100px;
	border-radius: 12px;
	overflow: hidden;
}
.take-photo-upload {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	border-radius: 12px;
	cursor: pointer;
}
.take-photo-upload:hover {
	transition: all .3s ease-out;
	opacity: 0.5;
}
.take-photo-upload__text {
	color: #fff;
	font-size: 12px;
    text-align: center;
}
.custom-radio__take-photo {
	margin-bottom: 10px;
}
.custom-radio__take-photo .custom-radio__fake-input {
	margin-right: 0;
	margin-left: 12px;
	opacity: 0;
}
.custom-radio__take-photo--active .custom-radio__fake-input {
	opacity: 1;
}
.custom-radio__take-photo--active .take-photo-upload {
	display: none;
}
.take-photo__photo-holder {
	width: 100px;
	height: 100px;
	position: relative;
}
.take-photo__photo-holder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.take-photo__photo-holder-close {
	position: absolute;
	top: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	right: 5px;
	width: 24px;
	height: 24px;
	border-radius: 5px;
	background-color: #9b9b9a;
	color: #fff;
	font-size: 11px;
}
.take-photo__photo-holder-close:hover {
	opacity: 0.5;
	transition: all .3s ease-out;
}

.recent-selfies__footer {
	position: absolute;
    display: flex;
    bottom: 0;
    padding: 16px;
    left: 0;
    z-index: 3;
    right: 0;
    justify-content: space-between;
    align-items: end;
}

.recent-selfies__footer-img {
	width: 46px;
    height: 46px;
    border-radius: 300px;
    overflow: hidden;
    border: 2px solid #FFFFFF;
}

.recent-selfies__footer-info {
	display: flex;
	color: #FFFFFF;
    font-size: 18px;
    line-height: 24px;
}

.modal-selfie {
	display: flex;
	flex: auto;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	height: 630px;
	background-color: #fff;
}

.modal-selfie__image-block {
	display: flex;
	flex: auto;
	max-width: 630px;
}
.modal-selfie__comment-block {
	display: flex;
	flex-direction: column;
	flex: auto;
	max-width: 570px;
}

.avatar {
	display: flex;
	border-radius: 300px;
	overflow: hidden;
}
/* .avatar img {
	width: 100%;
	height: 100%;
} */
.avatar.avatar--36 {
	width: 36px;
	height: 36px;
	min-width: 36px;
}
.modal-selfie__comment-block--header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #E7E7E7;
	padding: 12px 20px;
	padding-top: 40px;
}
.modal-selfie__comment-block--body {
	display: flex;
	flex-direction: column;
	flex: auto;
	padding: 20px;
}
.modal-selfie__comment-block--footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #E7E7E7;
}

.user-block {
	display: flex;
	align-items: center;
}
.user-block .avatar {
	margin-right: 14px;
}
.items-border {
	display: flex;
}
.items-border >*:not(:last-child) {
	padding-right: 20px;
	margin-right: 20px!important;
	border-right: 1px solid #E7E7E7;
}

.ico {
	display: flex;
	align-items: center;
}

.dbl-icons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.dbl-icons.dbl-icons-20 {
	margin-left: -10px;
	margin-right: -10px;
}
.dbl-icons > .ico {
	padding-left: 10px;
	padding-right: 10px;
}
