.condividi_btn-container {
    display: flex;
    width: 100%;
    padding-top: 100px;
    justify-content: center;
    background-color: #F7F6F2;
}


.condividi_btn {
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.2;
    letter-spacing: normal;
    text-align: left;
    color: white;
    cursor: pointer;
    border-radius: 2.8px;
    background-color: #aa0438;
    text-transform: uppercase;
    padding: 5px 10px 2px 10px;
	-webkit-transition: .25s ease-in-out; -moz-transition: .25s ease-in-out; -o-transition: .25s ease-in-out; transition: .25s ease-in-out;
}

.condividi_btn:hover {
  background-color: #f38384;
}


.condividi_img {
  width: 100%;
  max-width: 28px;
  height: auto;
  float: left;
  margin-right: 7px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  overflow: auto;
  background-color: rgba(241, 240, 236, 0.9);
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

.modal-content {
    width: 100%;
    max-width: 900px;
    height: 60vh;
    position: fixed;
    background-color: #fefefe;
    border-radius: 10.3px;
    box-shadow: 2.8px 2.8px 2.8px 0 rgb(26 24 24 / 30%);
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s;
    top: calc( 50% + 45px);
    transform: translateY(-50%);
}

.close_modal {
    color: #000000;
    float: right;
    font-size: 40px;
    position: absolute;
    font-weight: 400;
    top: -40px;
    right: 0px;
}

.close_modal:hover,
.close_modal:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  position: relative;
  padding: 2px 16px;
  background-color: transparent;
  opacity: 1;
  color: black;
}

.modal-body {
	padding: 0 16px;
	background-color: #ffffff;
	opacity: 1;
	text-align: center;
	border-radius: 10px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.social_preview_div {
  width: 100%;
  text-align: center;
  padding: 20px;
	height: 100%;
}

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


@-webkit-keyframes slideIn {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.iframe-cards{
	width: 100%; 
	height: calc(60vh - 50px);
	overflow: hidden;
}

@media only screen and (max-width: 320px) {		
	.iframe-cards{
		width: 100%; 
		height: calc(70vh - 50px);
		overflow: hidden;
	}
	
	.social_preview_div {
		width: 100%;
		text-align: center;
		padding: 5px 0 0 0;
	}
}

@media only screen and (max-width: 480px) {		
	.social_preview_div {
    	padding: 5px;
	}
}