.btn-outline {

    border: 2px solid black;
    background-color: transparent;
    padding: 0.7rem;
    border-radius: 5rem;
    color: rgb(0, 0, 0);
    font-size: 1.3rem; 
    text-transform: uppercase;
}

.btn-danger {

    border: 2px solid red;
    background-color: transparent;
    padding: 0.7rem;
    border-radius: 5rem;
    color: rgb(255, 0, 0);
    font-size: 1.3rem; 
    text-transform: uppercase;
    transition: 0.4s;
}

.no-bg {

    background-color: transparent!important;
}

.btn-danger:hover {

    background-color: red;
    color: white;
}

.btn-fill {

    border: 2px solid rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
    padding: 0.7rem;
    border-radius: 5rem;
    color: rgb(0, 0, 0);
    font-size: 1.3rem; 
    text-transform: uppercase;
    -webkit-box-shadow: 0px 0px 15px 0px #dddcdc;
    box-shadow: 0px 0px 15px 0px #dddcdc;
}

.btn-fill-secondary {

    border: 2px solid var(--secondary);
    background-color:  var(--secondary);
    padding: 0.7rem;
    border-radius: 5rem;
    color: rgb(255, 255, 255);
    font-size: 1.3rem; 
    text-transform: uppercase;
    -webkit-box-shadow: 0px 0px 15px 0px #dddcdc;
    box-shadow: 0px 0px 15px 0px #dddcdc;
}

.btn-fill-small-light {

    border: 2px solid rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
    padding: 0.3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 5rem;
    color: rgb(0, 0, 0);
    font-size: 1rem; 
    text-transform: uppercase;
}

.a-btn {

    border: 2px solid var(--secondary);
    background-color: var(--secondary);
    padding: 1rem;
    border-radius: 5rem;
    color: rgb(0, 0, 0);
    font-size: 1.3rem; 
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.btn-grey {

    border: 2px solid #535353;
    background-color: #535353;
    padding: 1rem;
    border-radius: 5rem;
    color: rgb(195, 195, 195);
    font-size: 1.3rem; 
    text-transform: uppercase;
}

.btn-text {

    background-color: transparent;
    border: none;
    color: rgb(209, 209, 209);
    font-size: 1.2rem;
}

.btn-small {

    font-size: 1rem;
}

.fixed-btn {

    padding: 1rem;
}

.fixed-bottom {

    bottom: 20px!important;
}

.back-btn {

    position: absolute;
    left: 16px;
    top: 16px;
    background-color: rgb(0, 0, 0);
    height: 3rem;
    width: 3rem;
    border-radius: 100%;
    color: rgb(255, 255, 255);
}

.back-main-btn {

    background-color: var(--third);
    height: 4rem;
    width: 4rem;
    border-radius: 100%;
    color: rgb(255, 255, 255);
    border: none;
}

.intro-btns button {

    width: 290px;
}

.alertclose {

    background-color: rgba(255, 255, 255, 0)!important;
    border-radius: 0%;
}

.copy-text {

    position: relative;
}

.copy-text button:before {
	content: "Copied";
	position: absolute;
	top: -45px;
	right: 0px;
	background: var(--secondary);
	padding: 8px 10px;
	border-radius: 20px;
	font-size: 15px;
	display: none;
}
.copy-text button:after {
	content: "";
	position: absolute;
	top: -20px;
	right: 25px;
	width: 10px;
	height: 10px;
	background: var(--secondary);
	transform: rotate(45deg);
	display: none;
}
.copy-text.active button:before,
.copy-text.active button:after {
	display: block;
}
.normal-a {

    color: var(--secondary);
    font-size: 1.2rem;
}