*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/



body{
	margin: 0 auto;
	width: 100%;
	background-color: #f0f0f0;
	font-family: 'Inter', sans-serif;
	background-image: url(/src/bg.jpg) !important; 
}
.wrapper{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 30px 30px;
}
form{
	width: 85%;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
	margin: 40px 0 0 0;
	padding: 40px 30px;
	border-radius: 3px;
}

form h1{
	font-size: 26px;
	text-align: center;
	margin: 0 0 30px 0;
}
form label{
	font-size: 18px;
	color: rgba(0, 0, 0, .9);
}
form input{
	background-color: #ffffff;
	margin: 10px 0 20px 0;
	border: 1px solid rgba(0, 0, 0, .1);
	padding: 10px;
	border-radius: 5px;
	font-size: 14px;
	transition-duration: 0.3s;
}
form input:focus{
	border-color: rgba(0, 0, 0, .4);
}
/* Стили для списка */
select.city {
    margin: 10px 0 20px 0;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    transition-duration: 0.3s;
}

/* Стили для полей ввода */
input, select {
    margin: 10px 0 20px 0;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    transition-duration: 0.3s;
}
.button{
	margin: 20px 0 0 0;
	padding: 15px 0;
	border-radius: 5px;
	background-color: #efefef;
	color: #000;
	transition-duration: 0.3s;

}
form a{
	text-align: center;
	margin-top: 20px;	
}

.auth__form{
	margin-top: 40px;
}

.header {
	position: fixed;
    height: 80px;
    width: 100%;
    background-color: #fff;
    border-bottom: solid;
    border-width: 1px;
    border-color: #7971e6;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -2px 10px 2px rgba(0, 0, 0, .05);
	z-index: 5;
}

.navigation {
    display: flex;
    align-items: center;
	font-family: "Inter", sans-serif;
	font-weight: 400;
}

.navigation a {
    color: #000;
    margin-right: 20px;
}

.burger-menu {
    display: none; /* Скрываем меню бургер на компьютерах */
}

/* Медиа-запрос для мобильных устройств */
@media screen and (max-width: 768px) {
    .navigation {
        display: none; /* Скрываем основную навигацию на мобильных */
    }

    .burger-menu {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .burger-icon {
        display: block;
        cursor: pointer;
		position: fixed;
		left: 25px;
    }

    .burger-menu ul {
        width: 100%;
        list-style-type: none;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 60px;
        right: 0px;
        background-color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }

    .burger-menu ul li {
        display: none; /* Скрываем элементы меню по умолчанию */
        padding: 15px 20px;
    }

    .burger-menu ul li a {
        color: #000;
        text-decoration: none;
        width: 100%;
    }

    /* Показываем элементы меню при активном состоянии */
    .burger-menu.active ul li {
        display: block;
    }
}

.header h1{
	font-size: 24px;
	font-weight: 500;
	color: rgb(88, 82, 173);

}

.header img{
	height: 60px;
	border-radius: 20px;
}
.space{
	height: 100px;
}
.footer{
	position: fixed;
	bottom: 0;
	width: 100%;
	padding: 15px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	border-top: solid;
	border-width: 1px;
	border-color: #7971e6;
	box-shadow: 0 2px 10px 2px rgba(0, 0, 0, .05) ;
}

.footer a{
	display: flex;
	flex-direction: column;
	align-items: center;
}

ion-icon{
	font-size: 25px;
	color: rgb(116, 113, 112);
}

.icon-active{
	color: rgb(121, 113, 230);

}
.no-active{
	margin-top: 5px;
	color: rgb(116, 113, 112);

}
.p-active{
	margin-top: 5px;
	color: #7971e6;

}

.account__main{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
}

.container__data{
	background-color: #f7f7f7;
	border-radius: 10px;
	border: solid;
	border-width: 1px;
	border-color: #7971e6;
	margin: 10px;
	padding: 30px 50px;
	display: flex;
	flex-direction: column;
	width: 100%;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, .05);
	
	

}
.container__data2{
	
	border-radius: 10px;
	margin: 10px;
	
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	width: 100%;
	box-shadow: 0 5px 10px 5px rgba(0, 0, 0, .08);
	border: 1px solid rgba(0, 0, 0, .6);
	background-image: url('https://top-fon.com/uploads/posts/2023-01/1674799853_top-fon-com-p-fon-dlya-prezentatsii-snegopad-78.jpg');
	background-size: cover;
	overflow: hidden;
	

}
.container__data2 h1{
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: rgb(0, 0, 0, 0.8);
	background-color: rgb(247, 247, 247,0.5);
	padding: 30px 20px;
	
}


.data_el{
	display: flex;
	align-items: center;
	margin-top: 5px;

}

.data_el h3{
	font-size: 16px;
	color: #303030;
	font-weight: 500;

}

.el{
	color: #000;
	padding: 10px;
	background-color: #fff;
	border-radius: 10px;
	margin-top: 5px;
}

.exit{
	position: fixed;
	bottom: 100px;
	width: 90%;
	background-color: #7971e6;	
	color: #fff;
	padding: 20px 0;
	font-size: 16px;
	border-radius: 10px;
	
}
.index__main{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 10px;
}


.add__track{
	width: 100%;
	background-color: #7971e6;	
	color: #fff;
	padding: 20px 0;
	font-size: 16px;
	border-radius: 10px;
}

.track__container{
	width: 100%;
	display: flex;
    flex-direction: column-reverse;

}

.track{
	margin-top: 20px;

	border-radius: 10px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 4px 10px 5px rgba(0, 0, 0, .07) ;
}
.track__header{
	background-color: #fff;
	padding: 20px;
	font-size: 16px;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.editIcon,
.copyButton,
.deleteIcon {
    flex-shrink: 0;
}
.track__content{
	display: flex;
	justify-content: space-between;
	padding: 20px;
	background-color: #f7f7f7;
	font-family: "Inter", sans-serif;
}
.opisanie{
	width: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}
.opisanie__p{
	font-size: 16px;
}

.status_el{
	display: flex;
	align-items: center;
	margin-top: 5px;
	width: 100%;
	flex-wrap: wrap
}
.ellips{
	border-radius: 100%;
	width: 90%;
	height: 90%;
}

.archive__main{
	padding: 0 10px;
}

.modal{
	display: none;
	width: 500px;
	height: 350px;
	background-color: #fff;
	border: 0.5px solid #000;
	border-radius: 5px;
	position: absolute;
	top: 100px;
	flex-direction: column;
	padding: 30px 30px;
	justify-content: space-between;
	z-index: 1000;
	

}
.modal h1{
	font-size: 18px;
	font-weight: 500;
}



.overflow{
	display: none;
	height: 100vh;
	width: 100vw;
	background-color: #000;
	z-index: 100;
	position: absolute;
	backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.75);
}


.addTrackButton{
	padding: 15px 0;
	background-color: #7971e6;	
	color: #fff;
	border-radius: 4px;

}
.close{
	position: absolute;
	top: 30px;
	right: 30px;
	cursor: pointer;
	color: #D91B1B;
}

.formAdd{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 20px 0 0 0;
}

.formAdd label{
	font-size: 16px;
	margin: 15px 0 0 0;

}



.formAdd input{
	width: 100%;
    height: 45px;
    border-radius: 10px;
    padding: 0 10px;
    margin: 15px 0 0 0;
    border: 0.5px solid #041332;
}

.wrapper__auth{
	display: flex;
	flex-direction: column;
}

.wrapper__auth img{
	align: center;
	width: 150px;
	border-radius: 5px;
}


@media (max-width: 500px) {
	
	
	.modal{
		width: 350px;
		height: 350px;
		top: 100px;
	}

}

.modal__open{
	display: flex;
}
.password-container {
    position: relative;
    margin: 10px 0 20px 0; /* Применяем свойства полей как у формы */
}

.password-container input {
    width: calc(100% - 40px); /* Добавляем отступ для иконки глаза */
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    transition-duration: 0.3s;
}

.password-container input:focus {
    border-color: rgba(0, 0, 0, .4);
}
.password-toggle {
    position: absolute;
    top: 55%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.password-toggle i {
    font-size: 18px; /* Устанавливаем желаемый размер иконки */
    color: rgba(0, 0, 0, 0.5); /* Устанавливаем цвет иконки */
}
.notification {
    display: none;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.notification.success {
    background-color: #4CAF50;
    color: white;
}

.notification.error {
    background-color: #f44336;
    color: white;
}
.track__header ion-icon {
    font-size: 1.5rem; /* Размер иконок эллипсов */
}

@media only screen and (max-width: 768px) {
    .track__header ion-icon {
        font-size: 2rem; /* Увеличение размера на мобильных устройствах */
    }
}
.data_el_adress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.contacts-a {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}
.img-svg {
	width: 30px;
    height: 30px;
}
.b-space {
	color: #000;
}
.checkmark-circle {
    color: #6366F1;
}
.checkmark-circle-outline {
	color: #373535;
}
.deleteIcon {
	cursor: pointer;
	color: #fa2020;
}
.enter-outline {
	vertical-align: text-top; /* Выравнивание по вертикали с текстом */
	font-size: 25px;
}
.call-outline {
	vertical-align: text-top; /* Выравнивание по вертикали с текстом */
	font-size: 20px;
}
.lock-closed-outline {
	vertical-align: text-top; /* Выравнивание по вертикали с текстом */
	font-size: 18px;
}
.mail-outline {
	vertical-align: text-top; /* Выравнивание по вертикали с текстом */
	font-size: 20px;
}
.text-outline {
	vertical-align: text-bottom; /* Выравнивание по вертикали с текстом */
	font-size: 20px;
}
.location-outline {
	vertical-align: text-bottom; /* Выравнивание по вертикали с текстом */
	font-size: 20px;
}
.navigate-circle-outline {
	vertical-align: text-bottom;
	font-size: 20px;
}
.copyButton {
	background-color: transparent;
}
#logoutForm {
	opacity: 0;
}
.track-number{
	font-family: "Inter", sans-serif;
	font-weight: 600;
	text-align: center;
	flex-grow: 1;
}
.theme-switch-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 10px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #000000;
}

input:focus + .slider {
    box-shadow: 0 0 1px #000000;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
@media screen and (max-width: 768px) {
.g-recaptcha, .g-recaptcha div{ 
    overflow: hidden; 
    max-width: 100%; 
    } 
   .g-recaptcha iframe, body > div[style]:last-of-type
   { transform: scale(0.75);
   transform-origin: left top;
   }
}
@media screen and (max-width: 400px) {
	.g-recaptcha, .g-recaptcha div{ 
		overflow: hidden; 
		max-width: 100%; 
		} 
	   .g-recaptcha iframe, body > div[style]:last-of-type
	   { transform: scale(0.65);
	   transform-origin: left top;
	   }
	}
	.track__content .data-column {
		display: flex;
		flex-direction: column;
	}
	
	.track__content .opisanie {
		margin-bottom: 10px;
	}
	