.mainContainer {
    width: 30rem;
	max-width: 100%;
    display: flex;
    align-items: center;
    border-radius: 1rem;
    flex-direction: column;
    justify-content: start;
}

.gradientOutput {
	width: 90%;
	height: 12rem;
	margin-top: 1rem;
	margin-left: auto;
	margin-right: auto;
	border-radius: 1rem;
}

.colorOptions {
	width: 100%;
	display: flex;
	margin-top: 1rem;
	align-items: center;
	justify-content: space-around;
}

.colorDirection select {
	width: 9rem;
	height: 2rem;
	padding: 0.2rem;
	padding-right: 0.2rem;
	border-radius: 0.5rem;
	border: 2px solid #00000040;
	background-color: #1d252c;
	color: #fff;
}

.colorDirection select option {
	cursor: pointer;
}

.colorDirection select:focus {
	outline: none;
	border: none;
	border: 2px solid #0000008c;
}

.colorInput {
	border: none;
	width: 3.5rem;
	height: 3.5rem;
	cursor: pointer !important;
	appearance: none;
	border-radius: 0.5rem;
	-moz-appearance: none;
	-webkit-appearance: none;
	background-color: transparent;
}

.colorInput::-webkit-color-swatch {
	border: none;
	border-radius: 0.3rem;
}

.colorInput::-moz-color-swatch {
	border: none;
	border-radius: 0.3rem;
}

#gradientCode {
	width: 90%;
	height: 3.2rem;
	resize: none;
	padding: 0.5rem;
	margin-top: 1rem;
	border-radius: 0.5rem;
	-webkit-user-select: none;
	/* Safari */
	-ms-user-select: none;
	/* IE 10 and IE 11 */
	user-select: none;
	/* Standard syntax */

}

.optionButtons {
	width: 90%;
	display: flex;
	margin-top: 1rem;
	margin-bottom: 1rem;
	justify-content: space-between;
}

.optionButtons button {
	border: 0px;
	z-index: 1;
	width: 8.5rem;
	color: #fff;
	height: 2.5rem;
	overflow: hidden;
	font-size: 1rem;
	cursor: pointer;
	position: relative;
	border-radius: 0.3rem;
	text-decoration: none;
	background-position: 5rem;
	text-transform: capitalize;
	background: linear-gradient(to top right, #4360ed, #2641d7);
}

.optionButtons button::before {
	content: "";
	top: 0%;
	left: -100%;
	z-index: -1;
	width: 100%;
	height: 100%;
	color: #fff;
	position: absolute;
	transition: left 0.4s;
	background-color: #202020;
}

.optionButtons button:hover::before {
	left: 0%;
}

#copyBtn {
	background: #202020 !important;
}

#copyBtn::before {
	background: linear-gradient(to top right, #4360ed, #2641d7) !important;
}
input {
	padding: 10px 0;
	font-size: 16px;
	color: #000;
	border: none;
	border-bottom: 1px solid #96cbff;
	outline: none;
	background: #fffcfa
}

.form-horizontal {

}

.vc-chrome {
	position: absolute;
	right: 0%;
	top: 104%
}

.input-group-addon {
	background: transparent;
	border: none;
}

.current-color {
	border-radius: 0px 10px 10px 0px;
	display: inline-block;
	height: 20px;
	background-color: #000;
	cursor: pointer;
	padding: 16px 0px 40px 193px;
}

.input-group {
	position: relative;
	width: 43% !important;
	border-collapse: separate
}

.form-control {
    display: block;
    width: 100%;
    height: 56px;
    padding: 20px 0px 27px 20px;
    font-size: 15px;
    line-height: 1.42857143;
    background-color: #f8fcffb8;
    border-radius: 10px 0px 0px 10px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.input-group-addon {
    line-height: 1;
    text-align: center;
    border-radius: 4px;
}

.input-group-addon {
	white-space: nowrap;
	vertical-align: middle
}

.input-group .form-control,
.input-group-addon {
	display: table-cell
}

#app {
	text-align: center;
	text-align: -webkit-center
}

@import url(https://fonts.googleapis.com/css?family=Roboto:400,500|Roboto+Mono:500);

img {
	max-width: 100%;
	height: auto
}

.containerc {
	padding: 1em;
	text-align: center
}

@media screen and (max-width:900px) {
	.material-color-picker {
		width: 100% !important
	}

	.containerc {
		padding: 0 !important
	}
}

.material-color-picker {
    display: flex;
    width: 51em;
    margin: 0 auto;
}


.material-color-picker__left-panel {
	z-index: 1
}

.material-color-picker__right-panel {
	position: relative;
	flex-grow: 1;
	overflow: hidden
}

.color-selector {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	padding: 1em 0;
	border-right: 0.25em solid #E0E0E0
}

.color-selector input[type=radio] {
	display: none
}

.color-selector label {
	position: relative;
	display: inline-block;
	padding: 0.5em 1.5em;
	cursor: pointer
}

.color-selector label:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	padding: 0.75em;
	background-color: currentColor;
	border-radius: 50%
}

.color-selector label:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0.5em;
	border: 0.25em solid;
	border-radius: 50%;
	transition: padding 250ms
}

.color-selector input[type=radio]:checked+label:after {
	padding: 1em
}

.color-palette-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform: translateX(-100%);
	display: flex;
	flex-direction: column;
	padding: 1.5em;
	color: black
}

.color-palette-wrapper.js-active {
	transform: translateX(0)
}

.color-palette-header {
	display: flex;
	justify-content: space-between;
	margin: 0;
	margin-bottom: 1em;
	font-weight: 400;
	color: #757575
}

.color-palette {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	flex-grow: 1
}

.color-palette__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-grow: 1;
	margin: 0.25em 0;
	padding: 0 1em;
	border-radius: 0.25em;
	font-family: "Roboto Mono", monospace;
	transition: transform 250ms;
	cursor: pointer
}

.color-palette__item:hover {
	transform: scale(1.05)
}

.copied-indicator {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 0);
	opacity: 0;
	transition: all 250ms;
	color: black
}

.copied-indicator.js-copied {
	transform: translate(-50%, -50%);
	opacity: 0.75
}

#imageContainer {
	position: relative;
	overflow: hidden;
}
#image {
	display: block;
	max-width: 100%;
	height: auto;
	width: 500px;
	overflow: hidden;
}
#colorIndicator {
	position: absolute;
	width: 10px;
	height: 10px;
	border: 2px solid white;
	border-radius: 50%;
	pointer-events: none;
}
#colorInfo {
	margin-top: 10px;
}
.Info{
    display: flex;
	flex-wrap: wrap;
	gap:20px;
}
#pickedColorValue  {
	min-height: 50px;
	display: block;
    border-radius: 1px;
	border: 1px solid rgba(33, 33, 33, 0.14);
}