.imagetitle {
    color: #666;
	font-weight: 400;
    font-size: 24px;
}
#cart-container {
    width: 100%; /* Full-width container */
    max-width: 100%; /* Restrict width for a clean layout */
    margin: 0 auto; /* Center the container horizontally */
    padding-top: 20px; /* Add padding inside the container */
	 padding-bottom: 40px; /* Add padding inside the container */
    display: flex;
    flex-direction: row; /* Keep items aligned in a row */
    justify-content: center; /* Space between the button and price */
    align-items: center; /* Center items vertically */
    box-sizing: border-box; /* Include padding in width calculations */
	gap: 20px; /* Add 20px space between children */
}

.thumb-item {
    text-align: left; /* Align the button to the left */
}

.button.alt {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background-color: #966919;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.button.alt:hover {
    background: #000; /* Change background to black on hover */
    display: inline-block;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.marked-up-title {
    color: #666;
	font-weight: 300;
    font-size: 26px;
}

.marked-up-price {
    color: #666;
    font-size: 26px;
	font-weight: 300;
	padding-right:10px;
}

@media only screen and (max-width: 767px) {
    .marked-up-title,
    .marked-up-price {
        font-size: 18px !important;
    }
}

.f_price {
    color: #966919;
    font-size: 26px;
	font-weight: 400;
text-align: right; /* Align the price to the right */
}

@media screen and (max-width: 450px) {
    #cart-container {
        flex-direction: column; /* Stack content vertically on smaller screens */
    }
}

@media screen and (max-width: 415px) {
    .f_price {
        font-size: 26px; /* Adjust font size for smaller devices */
    }
}


	
.fade2 {
	opacity: 1;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}

.fade2:hover {
	opacity: 0.3;
}
	
 /*adjusts the top padding of tab box*/
.greycolour {
		color: #888888;
}
	
.tab_padding {
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #F8F8F8;
	min-height: 589px !important;
}

 @media (max-width: 400px){.tab_padding {
	 padding-top: 0px;
	 background-color: #fbfbfb;
	 min-height: 589px !important;
}}

/* Border & dropshadow for image thumbs */
.dropshadow2n {
  padding: 10px;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s;
  object-fit: contain;
  box-sizing: border-box; /* Include border and padding in the element's total width and height */
  display: flex;
  flex-direction: column;
  align-items: center;
	justify-content: center; /* Center vertically */
  text-align: center;
}

.dropshadow2n img {
  width: 100%;
  height: auto;
}

.dropshadow2n:hover {
  border: 1px solid #999;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}
/* Apply smaller padding for mobile screens */
@media (max-width: 600px) {
  .dropshadow2n {
    padding: 5px;
  }
}

 /*********************************************/


#main-cont9 {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

#artist-cont9 {
    position: relative;
    display: block; /* Change to block to ensure the layout is stacked vertically */
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 30px;
}

.images-wrapper {
	display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* Add some margin to the upload button to ensure it appears separate from the images */
.upload-button-container.below-images {
	margin-top: 20px;
    text-align: center; /* Center the button horizontally */
    width: 100%;
}

.artrow9 {
         width: 300px;
         position: relative; /* Container needs to be relative for absolute positioning inside */
         margin-bottom: 30px; /* Add some margin for spacing (optional) */
}

.artrow9 img {
              width: 100%; /* Make the image take full width of the container */
              height: auto; /* Keep image aspect ratio */
              display: block; /* Removes bottom space under image */
}


.deleteImageIcon {
    position: absolute;
    top: 12px; /* Position at the top of the container */
    right: 12px; /* Position at the right of the container */
    width: 35px;
    height: 35px;
    background-color: rgba(0,0,0, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Change cursor on hover */
}



/* Apply the drop shadow to images within a table and add margin to prevent bleeding */
table .dropshadow8 {
	border: solid 1px #ccc !important;
    display: inline-block !important;
    object-fit: cover !important;
    transition: opacity 0.3s ease-in-out !important;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2) !important; /* Add drop shadow */
    margin-right: 10px !important; /* Add 10px space to the right to prevent shadow bleed */
}

.dropshadow9 {
            border: solid 1px #ccc;
            display: inline-block;
            width: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease-in-out;
        }

.dropshadow9:hover {
	opacity: 0.8;
}

/* Responsive layout */
@media screen and (max-width: 43em) {
.artrow9 {
	width:100%;
    padding-top: 10px;
    padding-bottom: 10px;
	}

#artist-cont9 {
	padding-top: 0px;
    padding-bottom: 40px;
	}
}

 /*********************************************/

/*adjusts the height & css of the frame listing box in step 3 - start*/

/* Existing styles */
#frameList {
    padding-top: 30px;
    border-bottom: solid #B8B8B8;
    width: 100%;
    border-width: 1px;
    overflow: auto !important;
    height: 300px !important;
    display: flex;
    justify-content: space-between; /* Distributes .frame_img with spacebetween */
}

@media (max-width: 480px) {
    #frameList {
        padding: 0px;
        border-top: solid #B8B8B8;
        border-bottom: solid #B8B8B8;
        width: 100%;
        border-width: 1px;
        overflow: auto !important;
        height: 325px !important;
    }
}

.frame_img {
    position: relative;
    width: 49%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
}
.frame_img:hover .style1fl { /* Changes text color on frame hover */
    color: #000000;
}

.currentframe p span { /* selected text change colour */
    color: #966919;
    font-weight: 600;
}

ul.frame-lists {
    padding: 0;
    margin: 0 auto;
    text-align: center;
}

.style1fl { /* text colour of frame text under thumb */
    color: #999;
    line-height: 35px;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.style1fl:hover {
    color: #966919; /* Hover color */
}

.ships { /* text css for shipping to */
    font-weight: 400;
    font-size: 14px;
    color: #966919;
}


/*adjusts the height & css of the frame listing box in step 3 - End*/
 /*********************************************/

/*hides sofa view*/
@media (max-width: 991px){.sofapart1 {display: none;}}

/*********************************************/




/********************ART - STEP 2*************************/
	#artheadingdiv {
	color: #767676;
	font-size: 16px;
	text-align: center;
	margin: 20px;
	font-family: sans-serif;
	}

.artheading {
	background-color:#F8F8F8;
	color: #767676;
	font-size: 16px;
	margin-top: 10px;
	padding-top: 40px;
	text-align: center;
	font-family: sans-serif;
	}

	#step3adiv {
	color: #767676;
	font-size: 16px;
	text-align: center;
	font-family: sans-serif;
	}

.step3a {
	color: #767676;
	font-size: 16px;
	padding-top: 10px;
	text-align: center;
	font-family: sans-serif;
	}

.check23{
	color: #767676;
	font-size: 1em;
	}


.artradio input {
	font-size: 12px;
    cursor: pointer;
	margin-bottom: 30px;
    margin-left: 50px;
	margin-right: 50px;
}
@media (max-width: 600px) {
    .artradio input {
        margin-left: 40px;
        margin-right: 40px;
    }
}	

	/*outer dimensions text & radio button in step2,3-SIZE*/
.f_outerdim {
	color: #333333;
	padding-bottom: 18px;
	font-size: 16px;
	font-family: sans-serif;
}
@media screen and (max-width: 375px) {.f_outerdim {
	font-size: 14px;
	}}
/*********************************************/

/*text for frame details*/	
.frame_details_text {
	color: #808080;
	line-height: 18px;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}



/* button*/
.btt {
  font-family: Arial, Helvetica, sans-serif;
  color: white !important;
  display: inline-block;
		background: #51A0D5;
		text-decoration: none;
  padding: 8px 25px;
  font-size: 12px;
  cursor: pointer;
}
.btb:hover {
  background: black;
		display: inline-block;
  color: white;
  text-decoration: none;
		cursor: pointer;
}


#wrapper {
  text-align: center;
  position: relative;
		margin: 0 auto; 
		max-width: 1700px;
		padding-bottom: 70px;

}
#wrapper .line {
  border-bottom: 1px solid #ccc;
  position: absolute;
  width: 100%;
  top: 25px;
}

#wrapper .textbox {
  position: absolute;
  width: 100%;
}
#wrapper .textbox .text {
  background-color: #F8F8F8;
  margin: 0px auto;
  padding: 0px 20px;
  text-align: center;
			color:#999999;
  display: inline;
  font-size: 30px;
}
		
	
	
.text1art {
font-size: 14px;
		color: #454545;
		text-align: center;
	margin-top: 15px;
padding-bottom: 15px;
	}

/* art section page - end*/

button#topFrameCategoryy {
    display: none;
}


@media (max-width: 1024px){
	.sofapart1 { display: none;}
}



/* Frame colour buttons - step 2 */
.catImage {
    display: flex;
	width: 100%;
	height: 30px;
}
.catImage li {
    float: left;
    border: 1px solid #B8B8B8;
    border-radius: 50%;
    display: inline-block;
    height: 30px;
    width: 30px;
    margin: 10px;
	
}
.catImage li a img {
    border-radius: 50%;
}
.catImage li a img:hover { border: 1px solid #2196F3;}

.f_disc {
    text-align: center;
    margin-top: 15px;
		margin-left: 20px;
	margin-right: 20px;
}



/* Frame colour buttons - step 2 END*/

	.fc-btn {
  padding: 7px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
		margin-right:25px;
  cursor: pointer;
  background-color: white;
  color: black;
  border: 1px solid #ccc;
}
	.fc-btn1 {
  color: white;
  padding: 7px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
		margin-right:25px;
  cursor: pointer;
  background-color: black;
  border: 1px solid black;
}
.fc-btn2 {
  padding: 7px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
		margin-right:25px;
  cursor: pointer;
  background-color: white;
  color: black;
  border: 1px solid #ccc;
}
.fc-btn:hover {
  background-color: black;
  color: white;
}
.fc-btn2:hover {
  background-color: black;
  color: white;
}

form.search1 input[type=text] {
  padding: 7px;
  font-size: 16px;
		height:38px;
  border: 1px solid #ccc;
  float: left;
  width: 250px;
  background: #fff;
}

form.search1 button {
		float: left;
  width: 40px;
  padding: 10px;
  background: #2196F3;
  color: white;
		height:38px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-left: none;
  cursor: pointer;
}

form.search1 button:hover {
  background: #0b7dda;
}

form.search1::after {
  content: "";
  clear: both;
  display: table;
}

.m_title {
  display: block;
		font-size: 10vw;
		padding-bottom: 10px;
		color: #454545;
		text-align: center;
}
.m_title2 {
  display: block;
		font-size: 4.5vw;
		padding-bottom: 10px;
		color: #454545;
		text-align: center;
}


#heading-mobile {display: none}

#main-cont {
	max-width: 1600px; /* max width of main container*/
	margin: 0 auto;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 20px;
}	


.header-account--icon {
    margin-left: 20px;
}

/*step 2 in art and x1 */
.sizeresults{
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
	text-align: center;
}
.x1thumbs{
   display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.x1thumbs2{
border-style: solid;
 border-width: 1px 0;
 border-color: #A4A4A4A1;
}

.tab__content table {
    display: none;
}
/*Frame loader*/
  .loader {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%; /* Add this line */
        transform: translate(-50%, -50%);
    }

    .loader .spinner {
        border: 5px solid #f3f3f3;
        border-top: 5px solid #3498db;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        animation: spin 2s linear infinite;
    }

    .loader span {
        margin-top: 5px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        white-space: nowrap; /* Add this line to prevent text wrapping */
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
/*Frame loader end */


.heading_mobile {display: none}

#main-search-cont {
display: flex;
	max-width: 1600px; /* max width of main container*/
    margin: 0 auto;
    justify-content: space-between;
    flex-flow: wrap;
	margin-top: 10px;
}

	
.artist_name {
	font-size: 14px;
	padding-top: 15px;
	padding-bottom: 20px;
	color: grey;
	text-align: center;
	word-wrap : break-word;
}


#heading-cont {
	text-align: center;
}

.s_heading {
	color: #333333;
	font-size: 30px; 
text-align: center;
}
			
.s_heading1 {
	color: #333333;
	font-size: 20px; 
}	

#searchfilter{
    color: #5a667f;
    padding: 6px 4px;
    width: 100%;
    border: 1px solid #e8eaed;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 1px 3px -2px #9098a9;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    transition: all 150ms ease;
	border-right: 5px solid transparent;
}
#searchfilter option {
    color: #223254;
}

.pagination-container {
  width: 100%;
  background-color: white;
  border-top: 1px solid #ddd;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  list-style: none;
  margin: 0;
}
.pagination li {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    float: left;
	padding: 10px 10px;
	height: 30px;
	margin: 8px;
}
.pagination_btn a {
    color: #ccc;
}
.pagination_numbers a {
  justify-content: center;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  color: black; /* Set the numbers color to black */
}

.pagination_numbers a:hover {
  color: #CC8D42; /* Set the numbers color to brown on rollover */
}
.activepage {
    background: #333333;
    color: #fff;

}
.activepage a {
    color: #fff;
}

/* Artists elementor page - Apply padding, border, and drop shadow to the specific image with the custom class */
.custom-artist-image img {
    padding: 10px; /* 10px white padding */
    border: 1px solid #ccc !important; /* 1px black border */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* Drop shadow on the static image */
    transition: opacity 0.3s ease-in-out;
}
@media (max-width: 600px) {
    .custom-artist-image img {
        padding: 5px; /* 5px padding on mobile */
    }
}

/* Reduce opacity on hover for the specific image with the custom class */
.custom-artist-image:hover img {
    opacity: 0.8; /* Reduce opacity on hover */
}

  #main-cont9 {
            max-width: 1600px;
            min-height: 100vh;
            margin: 0 auto;
            padding-left: 5%;
            padding-right: 5%;
        }

/* Parent container with padding and background */
.frameinfobox {
  padding: 0 5% 5% 5%; /* 0 for top, 5% for right, bottom, and left */
  background-color: #F9F8F8; /* Sets background color to bacground */
  display: flex;
  justify-content: space-between; /* Ensures columns are spaced evenly */
  flex-wrap: wrap; /* Allows items to wrap if the screen is too narrow */
}

/* Child boxes (left and right) */
.frameinfobox-left, 
.frameinfobox-right {
  flex: 0 0 calc(50% - 40px); /* Each box takes 50% width, minus 20px to account for space */
  box-sizing: border-box;
  margin: 0; /* No extra margin around the containers */
  padding: 0; /* No padding inside the containers */
}

/* Ensures that the image fits the container perfectly */
.frameinfobox img {
  width: 100%; /* Ensures the image takes up full width of the parent div */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Removes any extra space beneath the image */
  padding: 0; /* No padding around the image */
  margin: 0; /* No margin around the image */
}

/* Space between columns */
.frameinfobox-left {
  margin-right: 80px; /* Adds 80px space to the right */
}

/* Mobile layout with 40px between columns */
@media (max-width: 768px) {
  .frameinfobox {
    flex-direction: column-reverse; /* Reverse the column order on mobile */
  }

  .frameinfobox-left, 
  .frameinfobox-right {
    flex: 0 0 100%; /* Each box takes full width on mobile */
    margin-bottom: 25px; /* Adds 40px space between stacked boxes */
  }

  .frameinfobox-left {
    margin-right: 0; /* Remove margin on mobile */
  }
}


/* /////////////////////////////new css///////////////////////////////// */
/* main container all pages */
#main-container {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

#artist-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

#main-search-container {
    display: flex;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    justify-content: space-between;
    flex-flow: wrap;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d3d3d3;
}

.artrow {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: calc(33.3% - 25px);
    column-gap: 25px;
}

.artrow img {
    max-height: 400px;
}

#artist_name {
    font-size: clamp(12px, 2vw, 14px);
    color: grey;
    text-align: center;
    padding-top: 10px;
}

.artist_title {
    font-size: clamp(20px, 2vw, 30px);
    color: grey;
    padding-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

#searchfilter {
    color: #5a667f;
    padding: 6px 4px;
    width: 100%;
    border: 1px solid #e8eaed;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 1px 3px -2px #9098a9;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    transition: all 150ms ease;
    border-right: 5px solid transparent;
}

.madepg {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
}

#heading-container {
    font-size: clamp(14px, 2vw, 30px);
    color: grey;
    text-align: center;
    padding-top: 20px;
}

/* Phone styles */
@media screen and (max-width: 480px) {
    .artrow {
        width: calc(49% - 10px);
        column-gap: 10px;
    }

    .artrow img {
        max-height: 160px;
    }

    #main-container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .heading_mobile {
        display: block;
        font-size: 10vw;
        color: #454545;
        text-align: center;
    }

    #artist-container {
        padding-left: 20px;
        padding-right: 20px;
        gap: 0;
    }
}


/* /////////////////////////////for page all art & ///////////////////////////////// */
.classwrap {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    width: 100%;
    text-align: center;
    margin-bottom: -20px;
}

.art_padding_shadow {
    padding: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.scrollable-gallery {
    height: 500px;
    overflow-y: auto;
    padding: 10px;
}

/* Default styling for landscape images */
.classwrap img {
    width: 90%;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Custom styling for portrait images */
.classwrap img.portrait {
    width: 70%;
}

.artwork-title {
    font-size: 14px;
    color: #999999;
    padding-top: 5px;
    padding-bottom: 20px;
}

.st1 {
    width: 100%;
    color: #808080;
    text-align: center;
    border-bottom: 1px solid #A4A4A4A1;
    line-height: 0.1em;
    margin: 20px 0 20px;
}

.st1 span {
    background: #fff;
    padding: 0 20px;
}

/*Main Container for page art studio*/
#parent {
         max-width: 1950px; /* max width of main container*/
	     margin: 0 auto; /* centers main container on page*/
         display: flex;
	     padding-left: 5%;
	     padding-right: 5%;
         flex-flow: wrap;
	     justify-content: space-around; /* spaces a & b container*/
}

/*Displays the frame preview*/
.child-frame-display {
	max-width: 50%; /* displays the outpued frame max size*/
	/* margin: 15px 15px 0px 15px;*/
}

/*Displays the frame step tab box - fixed to 400px width*/
.child-frame-tab {
	margin-top:40px;	
	max-width: 430px; /* this is the fixed width for the tab step box 430px*/
	padding-bottom: 30px;		
}



/*Displays the frame preview sized for mobile*/
@media screen and (min-width: 320px) and (max-width: 667px) {
.child-frame-display {
	margin-top:20px;
	width: 100%;
	max-width: 100%;
	}
.child-frame-tab {
	margin-top:0px;
    width: 100%; /* this is the fixed width for the tab step box 430px*/
}
}

.shadow {
	box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.25);
}

.tab-wrap {
  transition: 0.3s box-shadow ease;
  border: 1px solid #cbcbcb;
  /*max-width: 100%;*/
  display: flex;
  flex-wrap: wrap;
  position: relative;
  list-style: none;
  background-color: #fff;
  margin: 20px 0;
/* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);*/
   max-width: 450px;
   width: 100%;
   border-top: 0px;
}
@media screen and (max-width: 375px) {
  .tab-wrap {	 
  margin: 0px 0;
}
    
}
   
 .lebel1::after{position: absolute;top: 49px;background: #cbcbcb;width: 5px;    height: 1px;content: "";left:32.6%;}
 .lebel2::after{position: absolute;top: 49px;background: #cbcbcb;width: 5px;    height: 1px;content: "";left:66.28%;}


.tab {
  display: none;
}
.tab:checked:nth-of-type(1) ~ .tab__content:nth-of-type(1) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  transition: 0.5s opacity ease-in, 0.8s transform ease, 0.8s -webkit-transform ease;
  position: relative;
  top: 0;
  z-index: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(2) ~ .tab__content:nth-of-type(2) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  transition: 0.5s opacity ease-in, 0.8s transform ease, 0.8s -webkit-transform ease;
  position: relative;
  top: 0;
  z-index: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(3) ~ .tab__content:nth-of-type(3) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  transition: 0.5s opacity ease-in, 0.8s transform ease, 0.8s -webkit-transform ease;
  position: relative;
  top: 0;
  z-index: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(4) ~ .tab__content:nth-of-type(4) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  transition: 0.5s opacity ease-in, 0.8s transform ease, 0.8s -webkit-transform ease;
  position: relative;
  top: 0;
  z-index: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:checked:nth-of-type(5) ~ .tab__content:nth-of-type(5) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s -webkit-transform ease;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  transition: 0.5s opacity ease-in, 0.8s transform ease, 0.8s -webkit-transform ease;
  position: relative;
  top: 0;
  z-index: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  text-shadow: 0 0 0;
}
.tab:first-of-type:not(:last-of-type) + label {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-left: 0px;
  border-left: 0px;
  /*border-bottom: 1px solid #cbcbcb;*/
}
.tab:not(:first-of-type):not(:last-of-type) + label {
  border-radius: 0;
}
.tab:last-of-type:not(:first-of-type) + label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-right: 0px;
}
.tab:checked + label {
  background-color: #fff;
  box-shadow: 0 -1px 0 #fff inset;
  cursor: default;
  border-bottom: 0px;
}
.tab:checked + label:hover {
  box-shadow: 0 -1px 0 #fff inset;
  background-color: #fff;
}
.tab + label {
  box-shadow: 0 -1px 0 #eee inset;
 /* border-radius: 6px 6px 0 0;*/
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #333;
  flex-grow: 3;
  text-align: center;
  background-color: #f2f2f2;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: 0.3s background-color ease, 0.3s box-shadow ease;
  height: 50px;
  box-sizing: border-box;
  padding: 15px;
  margin-left: 4px;
  border: 1px solid #cbcbcb;
  width: 20%;
    font-size: 15px;
}
.tab + label:hover {
  background-color: #f9f9f9;
  box-shadow: 0 1px 0 #f4f4f4 inset;
}
.tab__content {
  padding: 10px 25px;
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: -1;
  opacity: 0;
  left: 0;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-radius: 6px;
}


.button-container {display: flex;justify-content: center;align-items: center;gap: 30px;padding: 15px;}
.button-container button {font-family: 'Roboto', sans-serif;font-weight: 500;background-color: #f2f2f2;color: #808080;border: 1px solid #cbcbcb;padding: 10px 25px;font-size: 15px;cursor: pointer;transition: background-color 0.3s ease, color 0.3s ease;}
.button-container button:hover {background-color: #272727;color: white;}
.button-container button:active,
.button-container button.selected {background-color: #272727;color: white;border-color: #272727;}
@media (max-width: 600px) {.button-container {gap: 20px;padding: 10px;}
.button-container button {padding: 8px 15px;font-size: 14px;}}
.shadow2 {
  box-shadow: 7px 7px 8px rgb(0 0 0 / 0.2);
}

