.tt-btn {
    padding: 9px 33px;
    position: relative;
    z-index: 1;
    border: 2px solid $color__theme;
    color: #fff;
    /*overflow: hidden;*/
    font-size: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
	background-color: $color__theme;
	border-radius: 6px;

	&.btn-circle {
		border-radius: 30px;
	}

	&.btn-sqr {
		border-radius: 0;
	}

	&.btn-round {
		border-radius: 6px;
	}

	.tt-btn-content-wrapper {
		display: flex;
		align-items: center;
		.elementor-align-icon-right, .tt-btn__align-icon-right {
			order: 2;
		}
	}

	&:hover {
		background: transparent;
		color: $color__theme;

        &:before {
            height: 0;
        }
	}

	&.btn-small {
		padding: 5px 30px;
	}

	&.btn-lg {
		padding: 14px 35px;
        font-size: 20px;
	}

	&.btn-outline {
		background: transparent;
		color: $color__theme;
		border-color: $color__theme;

		&:hover {
            color: #fff;
			border-color: $color__theme;
			background-color: $color__theme;
		}
	}

	&.btn-light {
		color: $color__theme;
		background-color: #fff;
        border-color: #fff;

		&:hover {
			color: #fff;
			background: transparent;
			border-color: #fff
		}
	}

	.elementor-align-icon-left {
		margin-right: 5px;
	}

	.elementor-align-icon-right {
		margin-left: 5px;
	}

	.tt-btn-icon {
		font-size: 14px;
	}
	&.hover_translate {
		i {
			vertical-align: middle;
			transition: all 0.2s ease;
		}
		&:hover {
			i {
				transform: translateX(3px);
				margin-left: 3px;
			}
		}
	}
}

.play-button {
	color: rgba(255,255,255,0.7);
	font-size: 15px;
	font-weight: 400;

	i {
		height: 45px;
		width: 45px;
		line-height: 43px;
		border: 2px solid rgba(255,255,255,0.4);
		text-align: center;
		margin-right: 10px;
		border-radius: 50%;
		font-size: 14px;
		transition: all 0.3s ease-in-out;
		color: #fff;

		&:before {
			margin-left: 3px;
		}
	}

	&:hover {
		color: #fff;

		i {
			background-color: #fff;
			color: $color__theme;
		}
	}

	&.btn-fill {
		color: $color__heading;
		i {
			background-color: $color__theme;
			border-color: $color__theme;
			color: #fff;
		}
	}
}

.tt-inline {
	> div {
		display: inline-block;
	}

	@media(max-width: 420px) {
		.tt-button-primary {
			margin-bottom: 15px;
			margin-right: 0 !important;
		}
	}
}

.tt-block {
	> div {
		display: block;
	}
}

.tt-btn-wrapper {
	&.block {
		.tt-app-btn{
			display: block;
			width: max-content;
		}
	}
	.popup-youtube.watch-now-btn {
		text-align: center;
		border: none;
		i {
			width: 40px;
			height: 40px;
			line-height: 38px;
			font-size: 12px;
			-webkit-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
			border: 2px solid #fff;
			border-radius: 50%;
			color: #c0c0c5;
		}
		&:hover {
			i {
				background: #fff;
				color: #175cff;
			}
		}
	}
}

.tt-app-btn {
	padding: 13px 35px;
	border: 2px solid $color__theme;
	border-radius: 6px;
	display: inline-block;
	background-color: $color__theme;
	color: #fff;
	text-align: left;
	margin-bottom: 10px;

	.tt-btn-content-wrapper {
		display: flex;
		align-items: center;
	}

	.text-wrapper > span {
		display: block;
	}

	.btn-tagline {
		font-size: 12px;
		line-height: 1;

	}
	.tt-btn-text {
		line-height: 1.2;
		font-weight: 600;
		font-size: 16px;
	}

	.tt-btn-icon {
		margin-right: 10px;
		font-size: 26px;
	}

	&.btn-outline {
		background-color: transparent;
		border-color: #eee;
		color: $color__heading;

		&:hover {
			background-color: $color__theme;
			border-color: $color__theme;
			color: #fff;
		}
	}

	&:hover {
		//background-color: $color__theme;
		//border-color: $color__theme;
		//color: #fff;

		background-color: transparent;
		color: $color__theme;
	}
}

.tt-btn-wrapper {
	.tt-app-btn {
		&:not(:last-child) {
			margin-right: 15px;
		}
	}
}


.popup-video-btn {
	display: inline-block;
	height: 75px;
	width: 75px;
	line-height: 77px;
	text-align: center;
	background-color: $color__theme;
	color: #fff;
	border-radius: 50%;
	position: relative;
	font-size: 20px;

	i {
		margin-left: 5px;
	}

	&:before {
		content: '';
		position: absolute;
		left: -12.5px;
		top: -12.5px;
		height: 100px;
		width: 100px;
		opacity: 0;
		border-radius: 50%;
		border: 1px solid $color__theme;
		animation: btnWave 1500ms linear infinite;
	}

	&:after {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		opacity: 0;
		border-radius: 50%;
		border: 10px solid $color__theme;
		animation: btnWave 1000ms linear infinite;
	}

	&:hover {
		color: #fff;
	}
}

@keyframes btnWave {
	0% {
		opacity: 1;
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.5);
		-ms-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}
}