/* Обычный */
@font-face {
	font-family: 'Montserrat-Medium'; 
	src: url(../fonts/Montserrat-Medium.ttf); 
}

@font-face {
	font-family: 'Montserrat-Light'; 
	src: url(../fonts/Montserrat-Light.ttf); 
}
 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat-Medium';
            font-weight: 500;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            background: url(../img/fon.png);
            background-size: 40px;
        }

        /* Шапка сайта */
        header {
            background: white;
            color: #000000;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100000000;
        }


        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            zoom: 1.2;
        }

        .logo i {
            font-size: 2rem;
            color: #ffcc00;
        }

        .logo span {
            color: #ffcc00;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
            /* padding-top: 15px; */
        }

        nav a {
            color: #272727;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            /* padding: 0.5rem 0.8rem; */
            border-radius: 4px;
        }

        nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .header-content .active {
            background-color: rgba(255, 255, 255, 0.1);
            border-bottom: 3px solid #cc9900;
        }

        /* Основной контент */
        .main-content {
            padding: 1.5rem 0;
            min-height: calc(100vh - 300px);
        }

        .breadcrumbs {
            margin-bottom: 2rem;
            font-size: 0.95rem;
            color: #666;
        }

        .breadcrumbs a {
              text-decoration: none;
              color: #666;
            transition: color 0.3s;
        }

        .breadcrumbs a:hover {

            color: #666;
            text-decoration: underline;
        }

        .breadcrumbs span {
            color: #999;
        }

        .page-title {
            font-size: 2.8rem;
            color: #272727;
            margin-bottom: 1.5rem;
            /* font-weight: 800; */
        }

        .page-subtitle {
            font-size: 1.5rem;
            color: #555;
            margin-bottom: 2.5rem;
            font-weight: 400;
            border-left: 4px solid #ffcc00;
            padding-left: 1rem;
        }


.content-box{
            margin-top: 5rem;
}
        .content-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 5rem;
            margin-top: 2rem;
            align-content: stretch;
            justify-items: start;
            align-items: start;
            justify-content: space-evenly;
        } 



.content-otzivi {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 5rem;
            margin-top: 2rem;
            align-content: stretch;
            justify-items: start;
            align-items: start;
            justify-content: space-evenly;
        }

.content-constructor{
            display: grid;
            grid-template-columns: 0.8fr 1fr;
            gap: 0rem;
            margin-top: 2rem;
            align-content: stretch;
            justify-items: start;
            align-items: start;
            justify-content: space-evenly;
}

.constructor-img{
    padding-top: 50px;
}
.constructor-img img{
    width: 100%;
}

#calculator {
  padding: 1rem;
}
.total-price {
  font-size: 1.5rem;
}
#totalprice {
  color: #000000;
  font-size: 2rem;
}

.constructor-text p{
    padding-top: 30px;
    font-size: 20px;
}


        .company-info {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }

        .company-info h2 {
            color: #1a3a8f;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .company-info p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #444;
        }

        .company-info ul {
            margin-left: 1.5rem;
            margin-bottom: 2rem;
        }

        .company-info li {
            margin-bottom: 0.8rem;
            color: #444;
        }

        .company-info li i {
            color: #2d5cc2;
            margin-right: 0.5rem;
        }

        .cdek-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .cdek-logo img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
        }

        .cdek-name {
            font-size: 3.5rem;
            font-weight: 900;
            color: #272727;
            margin-top: 1.5rem;
            text-align: center;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* Секция преимуществ */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .feature-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #2d5cc2;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
        }

        .feature-card i {
            font-size: 2.5rem;
            color: #2d5cc2;
            margin-bottom: 1.2rem;
        }

        .feature-card h3 {
            color: #1a3a8f;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .feature-card p {
            color: #666;
            font-size: 1rem;
        }

        /* Футер */
        footer {
            background-color: #ffffff;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 1rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            /* margin-bottom: 2rem; */
            font-size: 10px;
            padding: 0 15px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }


        .footer-section img{
            flex: 1;
            width: 200px;
        }



.footer-section-address{
	font-size:14px;
	color: #000000;
	padding: 0px 0 30px 0;
	display: flex;
	justify-content: space-between;
	/* padding: 0 15px; */
}


.section-address-left{
	margin-top: -40px;
}

.section-address p{

	padding: 10px 0;
}


.section-address-icon{
	padding: 10px 0;
}


.section-address-icon img{
	width: 40px;
}





.footer-section_75 {
    /* width: 55%; */
    display: flex;
}
        .footer-section h3 {
            font-size: 14px;
            margin-bottom: 1rem;
            color: #000000;
        }

        .footer-section p, .footer-section a {
            color: #272727;
            margin-bottom: 0.8rem;
            display: block;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
            text-decoration: underline;
        }

        .copyright {
            /* text-align: center; */
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #000000;
            font-size: 14px;
        }
.dising_project{
    background: #1F1F1F;
    /* height: 400px; */
    margin-top: 50px;
    padding: 50px;
}

.dising_project_form span{
	font-size: 24px;
	text-align: center;
	align-content: center;
	margin: auto;
	width: 100%;
	display: flow-root;
}

.dising_project_form p{
	font-size: 17px;
	text-align: center;
	align-content: center;
	margin: auto;
	width: 100%;
	display: flow-root;
	padding: 20px;
	color: #666666;
}



.dising_project_b1 {
    width: 705px;
    /* height: 300px; */
    background: white;
    margin: auto;
    border-radius: 30px;
}

.application_form {
    border: 1px solid #CC9900;
    border-radius: 10px;
    padding: 5px 15px 5px 15px;
    cursor: pointer;
    font-size: 14px;
}


.banner_title{
    padding: 50px 0 0 0;
    /* position: absolute; */
    /* width: 50%; */
    font-size: 29px;
    display: grid;
}

.banner_title span{
    font-weight: 700;
    text-transform: uppercase;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(
94deg, #CD7B04, #E7C536, #E7C536, #E7C536);
}



 
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.banner_text{
    /* padding: 180px 0 0 0; */
    /* position: absolute; */
    /* width: 50%; */
    font-size: 14px;
    /* display: grid; */
}


.buttom_banner{
    width: fit-content;
    border: 1px solid #CD7B04;
    border-radius: 11px;
    padding: 7px 15px 7px 15px;
    margin-top: 16px;
    display: flex;
}


.buttom_novosti{
	display: flex;
	text-align: center;
	align-items: inherit;
	margin: 45px auto 0px auto;
}

.buttom_kalk{
	display: flex;
	text-align: center;
	align-items: center;
	margin: 1px auto 0px auto;
	width: 100%;
}
.buttom_kalk span{

	text-align: center;

	margin: auto auto;

}

.buttom_bn_tx1{
    margin-top: 40px;
}

.buttom_banner_tx1{
    padding: 7px 30px 7px 0px;
    margin-top: 16px;
    display: inline-grid;
}

.buttom_banner_tx1 p{font-size: 14px;}

.buttom_banner_tx1 span{font-size: 35px;}



.otzivi-company-text .buttom_banner_tx1{
    margin-top: 1px;
    width: 32%;
    display: inline-grid;
}

.otzivi-company-text .buttom_banner_tx1  p{
     /* font-size: 14px; */
}

.otzivi-company-text .buttom_banner_tx1  span{
    font-size: 24px;
	font-weight:600;
}


.otzivi-company-text h3{
    /* padding: 10px; */
    font-size: 20px;
    font-weight:600;
    padding-top: 29px;
}

.otzivi-company-text p{
     /* padding: 20px 0; */
     font-size: 10px;
}



.otzivi-company-text span{

    font-size: 20px;
}




.grid-box {
    padding-top: 50px;
    padding-bottom: 50px;
}

.grid-portfolio{

            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
}

        .grid-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .grid-item {
            background-color: #F8F8F8;
            align-content: center;
            padding: 20px;
            text-align: center;
            height: 120px;
        }


.grid-portfolio-item{
            /* background-color: #F8F8F8; */
            align-content: center;
            width:100%;
            text-align: center;
}



.grid-portfolio-item img{
    width:100%;
    border-radius: 10px;
}





.grid-portfolio-item {
  transition: transform 0.5s;
}

.grid-portfolio-item:hover {
  transform: scale(1.03);
	z-index:1000;
}

.grid-portfolio-item-p{display: table;padding: 15px 0;}

.grid-portfolio-item p{
    /* display: flex; */
    position: relative;
    float: left;
    font-size: 24px;
    padding-top: 2px;
    /* color: #666666; */
}

.grid-portfolio-item span{
    float: right;
    font-size: 22px;
    padding-top: 25px;
}
.grid-portfolio-item span:before{
    content:"----";
}

.grid-portfolio-item-text{
    font-size: 16px!important;
    text-align: left;
    width: inherit;
    padding-right: 30%;
    color: #666666;
    padding-bottom: 13px;
}


.grid-nashi-uslugi{display: grid;grid-template-columns: repeat(2, 1fr);gap: 20px;/* padding: 10px; */}


.grid-nashi-uslugi-item {
	font-size:24px;
	line-height: 28px;
	width: 100%;
	border: #FFFFFF20 1px solid;
	padding: 20px;
	border-radius: 5px;
	background-color: #2a2a2a;
}

.grid-nashi-uslugi-item-text{
	font-size: 16px;
	padding-top: 25px;
	color: #ffffff80;
}

.grid-nashi-uslugi-text-p {
 padding: 40px 0 0 0;
	
}
.grid-nashi-uslugi img{width: 80px;}




.grid-nashi-uslugi-item {
  transition: transform 0.5s;
}

/*
.grid-nashi-uslugi-item:hover {
	  transform: scale(1.1);
	background-color:	#1F1F1F;
	z-index:1000;
}*/


.gradient{
    background-image: linear-gradient(94deg, #CD7B04,  #E7C536);
    color: white;

    
    background: linear-gradient(94deg, #CD7B04,  #E7C536);
	background-size: 200% 200%;
	animation: gradient 10s ease infinite;
	transform: translate3d(0, 0, 0);

         
         }

.no_gradient{
    background-image: linear-gradient(94deg, #CD7B04,  #E7C536);
    color: white;
    background: #CC9900;
    background-size: 200% 200%;
    animation: gradient 10s ease infinite;
    transform: translate3d(0, 0, 0);
    }


.company-info1 {display: flex;}
.company-info1 h2{
    /* padding: 10px; */
}



.nashi-uslugi{
	color: white;
	
}

.company-text h3{
    /* padding: 10px; */
    font-size: 20px;
	font-weight:600
}

.company-text p{
     padding: 20px 0; 
    font-size: 16px;
}



.company-text span{

    font-size: 20px;
}






.otzivi-text p{
	padding: 78px 100px;
	background-color:#F9F9FA;
	border-radius:15px;
	color:#272727;
	font-size:26px;
	font-family: 'Montserrat-Light';
	position: initial;
}

.otzivi-text p:before{content: url("../img/«.svg");display: flex;margin: -40px 0 0px -54px;}
.otzivi-text p:after{content: url("../img/».svg");margin: 9px -53px -49px -54px;display: flex;flex-direction: row-reverse;}


.content-otzivi {
    /* display: grid; */
    gap: 6rem;
    margin-top: 2rem;
    align-content: stretch;
    justify-items: start;
    align-items: start;
    justify-content: space-evenly;
}

.grid-container-otzivi {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    padding: 10px;
}


        .otzivi-grid-item {
            background-color: #F8F8F8;
            align-content: center;
            padding: 20px;
            text-align: center;
            /* height: 80px; */
            border-radius: 10px;
        }
        .otzivi-grid-item img{
			width: 65px;
			}

        .otzivi-grid-item:hover {
			border: 2px solid #CD7B04;
			}

.novosti-box{
	padding-top:50px;
}

.grid-container-novosti {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    /* margin: 10px; */
}


.novosti-grid{
	padding-top: 10px;
}
.novosti-grid span{
	font-size: 12px;
	display: flex;
	flex-direction: row-reverse;
	margin: -28px 15px 0 0;
}

        .novosti-grid-item {
            background-color: #F8F8F8;
            align-content: center;
            padding: 20px;
            text-align: center;
            height: 150px;
            border-radius: 10px;
            display: flex;
        }

        .novosti-grid-item img{
			display: flex;
			width: 104px;
			height: 104px;
			/* padding: 10px; */
			}


.novosti-grid-item h1{
	font-size:20px;

}

.novosti-grid-item h2{
	font-size:10px;
}



.novosti-title-text{padding: 10px 21px;width: 100%;text-align: left;}

.novosti-title-text h1{/* padding: 10px; */font-size: 16px;color: #272727;}

.novosti-title-text h2{/* padding: 10px; */font-size: 12px;}












        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
            align-content: stretch;
            justify-items: start;
            align-items: start;
            justify-content: space-evenly;
        }




.contact-text{
	width:100%;
	
}

.contact-text-item{
	font-size:14px;
	padding: 0px 0 26px 0;
	color: #666666;
}

.contact-text-item p{
	
	font-size:20px;	
	color: #000000;
}









        /* Адаптивность */
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .cdek-name {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            
            .page-title {
                font-size: 2.2rem;
            }
            
            .page-subtitle {
                font-size: 1.2rem;
            }
            
            .cdek-name {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .company-info {
                padding: 1.5rem;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
            
            .logo {
                font-size: 1.5rem;
            }
        }







.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #CD7B04;
    border-radius: 0.50rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}


@media (min-width: 576px) {
    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
}


@media (min-width: 576px) {
    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}


@media (min-width: 768px) {
    .col-md-6

 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 576px) {
    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

.form-group {
    margin-bottom: 1rem;
}


.input-group-text
 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    margin-left: -5px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #CD7B04;
    border-radius: .50rem;
    z-index: 1;
}




.input-group-append, .input-group-prepend {
    display: -ms-flexbox;
    display: flex;
}


.input-group>.input-group-append>.btn, .input-group>.input-group-append>.input-group-text, .input-group>.input-group-prepend:first-child>.btn:not(:first-child), .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child), .input-group>.input-group-prepend:not(:first-child)>.btn, .input-group>.input-group-prepend:not(:first-child)>.input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}




.input-group-append, .input-group-prepend {
    display: -ms-flexbox;
    display: flex;
}


.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}


.input-group>.custom-file, .input-group>.custom-select, .input-group>.form-control {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}


.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}


.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    padding: 5px 0;
}


#calculator {
    padding: 1rem;
}

.mb-4, .my-4 {
    margin-bottom: 1rem !important;
}




.dising_project_form{
	padding:50px;
}


.dising_project_form_checkbox{
	font-size: 14px;
	color:#9a9a9a;
}












/* Стили для оверлея (подложки) */
.modal-overlay {display: none; /* По умолчанию скрыто */position: fixed;top: 0;left: 0;width: 100%;height: 100%;background-color: rgb(0 0 0 / 86%); /* Полупрозрачный фон */z-index: 1000; /* Высокий z-index для отображения над другими элементами */justify-content: center;align-items: center;}

/* Стили для контейнера модального окна */
.modal-window {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
max-width: 500px;
width: 90%;
position: relative;
animation: modalFadeIn 0.3s ease-out;
}

/* Стили для заголовка модального окна */
.modal-header {padding: 8px 25px;/* border-bottom: 1px solid #eaeaea; */display: flex;justify-content: space-between;align-items: center;flex-direction: row-reverse;}

.modal-header h3 {
margin: 0;
color: #333;
}

/* Стили для кнопки закрытия */
.close-btn {font-size: 30px;font-weight: bold;color: #888;cursor: pointer;transition: color 0.2s;margin: -10px;}

.close-btn:hover {
color: #333;
}

/* Стили для содержимого модального окна */
.modal-content {/* padding: 20px; */max-height: 70vh; /* Максимальная высота для скролла */overflow-y: auto; /* Добавление скролла при необходимости */}

/* Стили для футера модального окна */
.modal-footer {
padding: 15px 20px;
border-top: 1px solid #eaeaea;
display: flex;
justify-content: flex-end;
gap: 10px;
}

/* Анимация появления модального окна */
@keyframes modalFadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Стили для показа модального окна */
.modal-overlay.active {
display: flex; /* Меняем на flex для центрирования */
}

/* Стили для кнопок */
.btn-primary, .btn-secondary {
padding: 8px 16px;
border-radius: 4px;
font-weight: 500;
cursor: pointer;
transition: background 0.2s;
}

.btn-primary {
background-color: #5c6bc0;
color: white;
border: none;
}

.btn-secondary {
background-color: #f5f5f5;
color: #333;
border: 1px solid #ddd;
}

.btn-primary:hover {
background-color: #3949ab;
}

.btn-secondary:hover {
background-color: #e9e9e9;
}








input[type="checkbox"]:checked, 
input[type="checkbox"]:not(:checked), 
input[type="radio"]:checked, 
input[type="radio"]:not(:checked) 
{
    position: absolute;
    left: -9999px;
}

input[type="checkbox"]:checked + label, 
input[type="checkbox"]:not(:checked) + label, 
input[type="radio"]:checked + label, 
input[type="radio"]:not(:checked) + label {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    line-height: 20px;
    cursor: pointer;
}

input[type="checkbox"]:checked + label:before, 
input[type="checkbox"]:not(:checked) + label:before,
input[type="radio"]:checked + label:before, 
input[type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 18px;
    height: 18px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
}

input[type="checkbox"]:checked + label:before, 
input[type="checkbox"]:not(:checked) + label:before {
    border-radius: 2px;
}

input[type="radio"]:checked + label:before, 
input[type="radio"]:not(:checked) + label:before {
    border-radius: 100%;
}

input[type="checkbox"]:checked + label:after, 
input[type="checkbox"]:not(:checked) + label:after, 
input[type="radio"]:checked + label:after, 
input[type="radio"]:not(:checked) + label:after {
    content: "";
    position: absolute;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked + label:after, 
input[type="checkbox"]:not(:checked) + label:after {
    left: 3px;
    top: 4px;
    width: 10px;
    height: 5px;
    border-radius: 1px;
    border-left: 4px solid #000000;
    border-bottom: 4px solid #000000;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

input[type="radio"]:checked + label:after, 
input[type="radio"]:not(:checked) + label:after {
    left: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #cc9900;
}

input[type="checkbox"]:not(:checked) + label:after, 
input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
}

input[type="checkbox"]:checked + label:after, 
input[type="radio"]:checked + label:after {
    opacity: 1;
}



.copyright{
	display:flex;
	justify-content: space-between;
	border-top: 1px solid #CD7B04;
}

.copyright_left {display: inherit;padding: 0 15px;}

.copyright_left p{padding-right: 50px;}

.copyright_right{
	float:right;
	font-size: 19px;
	padding: 0 15px;
}