﻿.ballooncnt h1 {
	margin: 10px 10px 30px;
	font-size: 26px;
	text-align: center;
}

#balloonContainer {
	/* position: relative; */
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 20px;
}
#colorSelection {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
.color-option {
	margin: 1px;
}
.color-option img {
	width: 48px; 
	cursor: pointer;
	border: 2px solid transparent;
}
.color-option.selected img {
	border-color: #04AAD9;
	border-radius: 3px;
}
#selectedInfo div {
	margin-top: 10px;
}


#bouquetSelection {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

.bouquet-option {
	text-align: center;
	margin: 10px 3px; 
}

.bouquet-option img {
	width: 180px; 
	cursor: pointer;
	border: 2px solid transparent;
}

.bouquet-option input[type="number"] {
	margin-top: 5px;
}
#selectedInfo {
	/*background: #f2f2f2;*/
	margin: 0 10px 20px;
	padding: 5px;
}


#selected-color {
	display: flex;
	align-content: center;
}
#selected-color div {
  width: 150px;
  margin: 20px;
  font-size: 12px;
  line-height: 18px;
	text-align: center;
}

#selected-color img {
  margin: auto;
  width: 100px;
}

#floatingMenu {
    display: flex;
	flex-direction: column;
	align-items: center;
	background: #04AAD9;
	padding: 10px;
	max-width: 104px;
}

#interactivePanel {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
}

#summaryPanel {
    overflow-y: auto;
   padding: 0 10px 20px;
	height: 100%;
	/*background: #f0f0f0;
	width: 100%;
    border-left: 1px solid #ccc;
	*/
	margin: 0 15px 0;
}

#interactivePanel .panel-close:hover {
    cursor: pointer;
    color: #666;
}

#interactivePanel::-webkit-scrollbar {
    width: 6px;
}

#interactivePanel::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 10px;
}

#interactiveModal {
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  transform: translate(-50%, -50%);
	  width: 50%;
	  max-height: 99%;
	  background: white;
	  border-radius: 10px;
	  padding: 20px;
	  overflow-y: auto;
	  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}


.two-col-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}



.input-outer label {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.two-col-row .input-outer {
  width: calc(50% - 15px);
  margin-bottom: 15px;
}

.input-outer.full-width {
  width: 100%;
}

.df {
	width: 111px;
	margin: auto;
}

.logoDetails {
	display: none;
}

.field {
	-webkit-appearance: menulist;
	-moz-appearance: menulist;
	appearance: menulist;
}

input[type=file] {
  padding: 10px;
}

#floatingMenu button {
	position: relative;
	background: #29abd2;
	border: 1px solid #b5d2ec;
	border-radius: 3px;
	color: #fff;
	margin: 2px 5px;
}
#floatingMenu button:hover {
	cursor: pointer;
	background: #069bc8;
	border-color: #fff;
}

#floatingMenu button:disabled, #floatingMenu button:disabled:hover {
  background: #5da2a6;
  border-color: #518b8e;
  cursor: not-allowed;
}

#floatingMenu  button:disabled::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		pointer-events: none;
	}

#formDetails p, .comment {
	font-size: 12px;
	line-height: 160%;
	font-style: italic;
}

.mtb20 {
	margin: 20px auto;
}
.pink {
	border: 1px solid #d22d73;
	background: #d22d73;
}

		.spinner {
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-left: 10px;
            display: none;
        }

        button:disabled .spinner {
            display: inline-block;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }


	.button {
		height: auto;
		min-height: 30px
	}
.active-green {
  background: #16b316 !important;
}

.midblue {
	color: #04AAD9;
}
.mt20b5 {
	margin: 20px 0 5px;
}
.bold {
	font-weight: 600;
}

.accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}
.accordion li {
	width: 685px;
	max-width: 95%;
	margin: 10px;
}

.accordion-header {
   cursor: pointer;
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #29ABD2;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-weight: 600;
}

.accordion-header .arrow {
    border: solid #484848;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.accordion-header.active .arrow {
    transform: rotate(225deg);
}

.accordion-content {
    display: none;
    padding: 10px;
    border-top: none;
}
@media screen and (max-width: 600px) {
	#balloonContainer { 
		display: flex;
		align-items: center;
		flex-direction: column-reverse;
	}
	#floatingMenu {
	  /*display: flex;*/
	  position: fixed;
	  bottom: 0;
	  flex-direction: row;
	  padding: 10px;
	  max-width: none;
	  z-index: 100;
	}

	#floatingMenu button {
	  max-width: 86px;
	}
	#floatingMenu button img {
		width: 56px;
		margin: auto;
	}

	#interactiveModal {
	  left: 0;
	  top: 10px;
	  transform: none;
	  width: 100%;
	  padding: 15px;
	}

	#summaryPanel {
		width: 100%;
		padding: 20px 0;
	}
	#selectedInfo {
		margin: 10px 0 20px; 
		padding: 5px 0;
	}
	
	#selected-color div {
		margin: 20px 10px;
	}
	
	.bouquet-option img {
		width: 135px;	
	}
	
	.ballooncnt h1 {
		margin: 10px 10px 0;
	}
	
	.two-col-row .input-outer {
		width: 100%;
	}
}