/*
Theme Name: IMSP Theme
Author: XCORE WEB SOLUTIONS SRL
Author URI: https://xcore.md
Description: Template for IMSP website.
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 8.3
Version: 1.0
Text Domain: imsp
*/
.card-doctor__image img
{
	transform: scale(0.75);
}
#submit-btn.disabled
{
	background-color: rgb(200, 200, 200);
	border-color: rgb(200, 200, 200);
	cursor: not-allowed;
}

/* About us */
.custom_learn-more
{
	--tw-text-opacity: 1;
    color: rgb(10 111 232 / var(--tw-text-opacity, 1));
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.25rem;
    display: flex;
		
	cursor: pointer;
}
#custom_sticky
{
    position: absolute; 
    top: 0;
    transition: 0.2s all ease;
}

/* Loading element */
#loadingContainer
{
    width: 100%;
    min-width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#loadingText
{
    padding-top: 20px;
    color: rgba(0, 168, 168, 1);
}
#loadingCircle
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(0, 168, 168, 1); 
    border-left: 2px solid transparent;

    animation: rotate 1s linear infinite;
}
@keyframes rotate
{
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}