/* 
 Theme Name: Cad It Now App 2025
 Theme URI: noveo.pl
 Author: noveo.pl
 Author URI: noveo.pl
 Description: Custom theme
 Version: 1.0 
*/

@font-face {
    font-family: 'DM Sans';
    src: url('assets/fonts/DM_Sans/DMSans-VariableFont_opsz,wght.ttf');
}

html{
    font-size: 10px;
}
html body{
    margin: 0px;
    padding: 0px;
    background-color: #F8F8F8;
    font-family: 'DM Sans';
}
.wrapper{
    width: 1248px;
    margin: auto;
    max-width: calc(100% - 48px);
}
.sec_outher{
    margin-bottom: 192px;
}

a{
    text-decoration: none;
}
p{
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 150%;
    color: #202224;
    margin: 0px;
    margin-bottom: 24px;
}
label{
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 100%;
    color: #202224;
    margin: 0px;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
h1, h2, .h1, .h2{
    font-weight: 600;
    font-size: 3.2rem;
    line-height: 100%;
    color: #202224;
    margin: 0px;
    margin-bottom: 48px;
}
h3, .h3{
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 100%;
    color: #202224;
    margin: 0px;
    margin-bottom: 24px;
}
h4, .h4{
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 100%;
    margin: 0px;
    margin-bottom: 4.8rem;
    color: #ED999A;
}

.noveo_link{
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #A18B68;
    transition-duration: 0.4s;
}
.noveo_link:hover{
    opacity: 0.7;
}

.noveo_btn{
    border: 0px;
    border-radius: 4px;
    background-color: #A18B68;
    color: #FFF;
    padding: 16px 24px;
    transition-duration: 0.4s;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 100%;
    cursor: pointer;
}
.noveo_btn:hover{
    opacity: 0.9;
}

input[type='text'],
input[type='date'],
input[type='email'],
input[type='tel'],
input[type='number'],
input[type='password'],
textarea,
select{
    font-family: 'DM Sans';
    outline: 0px;
    border: 1px solid #EBEDF4;
    border-radius: 8px;
    background-color: #FFF;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 100%;
    padding: 20px 24px;
    width: calc(100% - 48px);
}
textarea{
    height: calc(163px - 40px);
}
select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; 
    background: url('assets/css/content/arrow-faq-rotated.svg') no-repeat right 24px center;
    background-size: 18px auto;
    padding-right: 48px;
}
input[readonly]{
    opacity: 0.5;
    cursor: default;
}

@keyframes fade-in {
    from {
      opacity: 0;
      -webkit-transform: translate3d(-24px, 0, 0);
      transform: translate3d(-24px, 0, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
}
.fade-in-element{
    animation: fade-in 0.8s;
}
.hidden{
    opacity: 0;
}
@keyframes fade-in-bottom {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 12px, 0);
      transform: translate3d(0, 12px, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
}
.fade-in-element-bottom{
    animation: fade-in-bottom 1.4s;
}
.hidden-bottom{
    opacity: 0;
}

@keyframes spin_loading_loop{
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}