@charset "utf-8";

#sharebox {
	display: none;
}
#sharebox__wrapper{
	background: white;
    border-radius: 5px;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#sharebox__flavor {
    text-align: center;
    margin: 1rem 0 .75rem;
    width: 100%;
}

#sharebox__divider{
    background-color: var(--brand-blue);
    height: 1px;
    width: -webkit-fill-available;
    margin-top: 1rem;
    opacity: .5;
}

#sharebox__buttongrid{
    width: -webkit-fill-available;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

.sharebox__titleGrid {
	display: flex;
	justify-content: space-between;
	width: -webkit-fill-available;
}
.sharebox__title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--brand-blue);
	width: -webkit-fill-available;
}
#sharebox__exitHolder {
	height: 0px;
	width: 0px;
	position: relative;
	left: calc(100% - 1.25rem);
	top: 1.25rem;
}
#sharebox__exit {
	border: none;
	background: var(--brand-blue);
	color: white;
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 1000px;
	display: none;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.sharebox__shareButton{
	font-size: 1.1rem;
	border-radius: 100px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	width: 3rem;
	aspect-ratio: 1/1;
	margin: 0 .5rem;
}

#sharebox__whatsapp{
	background: #25d366;
}

#sharebox__facebook{
	background: #4267B2;
}

#sharebox__twitter{
	background: #1DA1F2;
}

#sharebox__linkedin{
	background: #2867B2;
}

#sharebox__clipboardHolder{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: auto;
}
#sharebox__clipbar{
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	color: black;
	border: 1px lightgray solid;
    padding: .3rem .5rem;
    border-radius: 5px;
}
#sharebox__clipbar svg{
color: var(--brand-darkgray)
}
.sharebox__generatedlink{
margin: 0 .5rem;
}
.sharebox__copybutton{
	background: var(--brand-purple);
    color: white;
    padding: .5rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 600;
}
#sharebox__clipbar:hover{
	background-color: lightgray;
}

#sharebox #dialog_exit_holder{
	top: -1rem;
	left: calc(100% - 1.5rem);
}


@media only screen and (max-width: 900px){
	#sharebox #dialog_exit_holder{
		top: 0.5rem;
		left: calc(100% - 3rem);
	}
	
}