.pinterest {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  padding: 20px;
  border-radius: 6px;
}

.pinterest *, .pinterest ::after, .pinterest ::before {
  box-sizing: border-box;
}

.pinterest__form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.pinterest__form-div {
  background-color: #fadddc !important;
  padding: 5px 10px;
  border: 2px solid #fff;
  border-radius: 6px;
}

.pinterest__group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.pinterest__button {
  background-color: #E60023!important;
  color: #fff !important;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.375rem;
  padding: 0.375rem 1.75rem;
  cursor: pointer;
  font-family: 'Poppins'!important;
  margin: 5px!important;
}

.pinterest__button:hover {
  background-color: #E60023 !important;
  color: #fff !important;
}

.pinterest__button:disabled {
  background-color: #E600232f !important;
  color: #fff !important;
  cursor: not-allowed;
}

.pinterest__button--paste {
  background-color: #fff!important;
  color: #333;
  height: 35px;
  margin-right: 15px;
  padding: 0px 10px;
  align-self: center;
}

.pinterest__button--paste:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.pinterest__button--big {
  width: 100%;
  background-color: #E60023 !important;
  border: 2px solid #fff;
  margin-top: 10px;
  font-weight: bold;
}

.pinterest__button--big:disabled {
  background-color: #E600232f !important;
  color: #fff !important;
  cursor: not-allowed;
}

.pinterest__input {
  background-color: transparent !important;
  width: 100%;
  border: none !important;
  padding: 0;
  outline: none !important;
}

.pinterest__result {
  display: none;
  width: 100%;
  margin-top: 15px;
  border-radius: 6px;
}



/* Styles Specific to Video */
.pinterest__video {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}

.pinterest__video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.pinterest__video-container video {
    max-width: 100%;
    border-radius: 6px;
}

.pinterest__video-container button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.pinterest__video-container button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}


@media (min-width:0px) and (max-width: 767px){
	.pinterest__group{
		flex-wrap: wrap !important;
		gap : 10px;
		padding : 10px 0px;	
			
	}
	.pinterest__group input#pinterest_video_url,.pinterest__group button.pinterest__button.pinterest__button--download{
		width: 100% !important;
		margin : 0px !important;
		font-size : 15px !important;
	}
	.pinterest__group input#pinterest_video_url,.pinterest__group #pinterest_photo_url{
		background-color: white !important;
		
	}
}