
.breadcrumbs{
    margin: 0 0 10px 0;
}

/*-------------------------left column----------------------*/

.container-1 {
    display: flex;
    justify-content: space-between;
    margin: auto;
    position: relative;
    
    /*width: 92%;*/
    width:100%;
    margin: auto;
    margin-top: 0px;
    padding:0 var(--global-left-right-padding);
    overflow:hidden;
    box-sizing: border-box;
}

@media(max-width:1024px) {
    .container-1 {
        flex-direction: column;
        
    }
}

.container-1-left {
    /*width: calc(100% - 300px);*/
    width:100%;
    margin-top: 0px;
    padding-right: 0;
    /*max-width: 900px;*/
    box-sizing: border-box;
}

@media(max-width:1024px) {
    .container-1-left {
        width: calc(100%);
        padding: 0 0;
    }
}

@media(max-width:768px) {
    .container-1-left {
        padding: 0px 0px;
        width: 100%;
        margin-top: 10px;
    }
}


h1 {
    font-size: 3.5rem !important;
    line-height: 4.5rem !important;
    font-weight: 800 !important;
    margin: 0px;
}

@media(max-width:1024px) {
    h1 {
        font-size: 3.5rem !important;
        line-height: 4.5rem !important;
    }
}

@media(max-width:768px) {
    h1 {
        font-size: 2.5rem !important;
        line-height: 3.4rem !important;
    }
}

.author{
    font-size:1.3rem;
}


/*--------------------------------left column END------------------------------*/


/*--------------------------------right column ------------------------------*/
.container-1-right {
    width: 400px;
    min-width: 260px;
    margin-left: 60px;
    padding-left: 10px;
    padding-top: 40px;
    margin-top: 20px;
    box-sizing: border-box;
}

@media(max-width:1400px) {
    .container-1-right {
        width: 300px;
        margin-left: 30px;
    }
}

@media(max-width:1024px) {

    .container-1-right {
        width: calc(100% - 20px);
        padding-left:0;
        margin-left: auto;
        margin-right: auto;
        padding-top: 0;
    }
}

@media(max-width:768px) {
    .container-1-right {
        width: calc(100% - 10px);
        padding-left: 0;
        border: none;
        margin-top: 10px;
        min-width: 240px;
    }
}

/*-----------------------------right column END---------------------------*/



.columns{
    width:100%;
    display:flex;
    margin-top:20px;
}
@media(max-width:768px){
    .columns{
        flex-direction: column;
    }
}

.column-left, .column-right{
    width:50%;
    display:flex;
    flex-direction:column;
}
@media(max-width:768px){
    .column-left, .column-right{
        width:100%;
    }
}

.column-right{
    justify-content:flex-start;
    align-items: center;
}



.panel{
    display:flex;
    flex-direction:column;
    width:calc(100% - 50px);
   

}
@media(max-width:768px){
    .panel{
        width:100%;
    }
}

.functions{
    background-color:#fff;
    padding:15px 35px;
    box-sizing:border-box;
    border-radius:15px;
    max-width:460px;
    margin-top:5px;
}
@media(max-width:768px){
    .functions{
       padding:15px 15px; 
    }
}

.option{
    font-size:1.4rem;
    margin:10px 0;
    display:flex;
    justify-content: space-between;
    align-items: center;
}

input[type=number] {
    border: 1px solid #dfdfdf;
    outline: none;
    width: 55px;
    padding: 5px 8px 5px 8px;
    border-radius: 2px;
    margin-top: 0;
    background-color: #fcfcfc;
    box-sizing: border-box;
    text-align:center;
    font-size:1.2rem;
    margin-right:5px;
}

input[type=number]:focus  {
    background-color: white;
}

input[type=number]#shadow-opacity{
    width: 57px;
}

input[type=color] {
    width: 70px;
}

input[type=range]{
	width:100%;
	border:none;
    background-color: #d5dced;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 10px;
	margin:15px 0px 16px 0;
}

input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: 2px solid var(--primary-color);
	height: 20px;
	width: 20px;
	border-radius: 10px;
	background-color: var(--primary-color);
	cursor: pointer;
	margin-top: -7px; 
    -moz-box-shadow: 0px 2px 4px 0px rgba(203,204,226,1.00);
    -webkit-box-shadow: 0px 2px 4px 0px rgba(203,204,226,1.00);
    box-shadow: 0px 2px 4px 0px rgba(203,204,226,1.00);
}

input[type=range]::-webkit-slider-runnable-track
{
	box-shadow: 0 0 0 #fff;
	border-radius: 10px;
	width: 100%;
    height: 10px;
    cursor: pointer;
    animate: 0.2s;
    background: #f2f2f2;
    border-radius: 5px;
    border: 1px solid #f2f2f2;
}

/* switch inset/outline shadow START */
.inset-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 28px;
}

.inset-switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.circle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.circle:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .circle {
    background-color: var(--primary-color);
}

input:focus + .circle {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .circle:before {
    -webkit-transform: translateX(42px);
    -ms-transform: translateX(42px);
    transform: translateX(42px);
}

/* Rounded sliders */
.circle.round {
    border-radius: 30px;
}

.circle.round:before {
    border-radius: 50%;
}

/* switch inset/outline shadow START */


/* rectangle START */
.rectangle-wrapper{
    box-sizing:border-box;
    padding:50px;
    width:100%;
    display:flex;
    justify-content:center;
    border-radius:15px;
    background-color:#fff;
    margin-bottom:20px;
    aspect-ratio: 360 / 300;
    align-items: center;
}
@media(max-width:768px){
    .rectangle-wrapper{
        padding: 30px 20px 30px 20px;
    }
}
.rectangle{
    width: calc(100% - 40px);
    height:300px;
    max-width:360px;
    border-radius:15px;
}
@media(max-width:768px){
    .rectangle{
        aspect-ratio:360/300;
        width:200px;
        height:auto;
    }
}

.heading{
    width:100%;
}

#box-shadow-code{
    margin-top:0px;
    width: 100%;
    border-radius:15px;
    border:1px solid #dfdfdf;
    padding:10px 20px;
    box-sizing:border-box;
    background-color: #323a59;
    height:140px;
    display:flex;
    align-items:center;

}
@media(max-width:768px){
    #box-shadow-code{
        margin-top:10px;
        margin-bottom:40px;
        padding:15px 10px;
        width: 100%;
        height:auto;
    }
}

#box-shadow-code>code{
    font-family: monospace;
    font-size:1.5rem;
    line-height: 1.3;
    color:#fff;
}

/* rectangle END */