/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 19-Jan-2022, 17:53:17
    Author     : darius
*/

.sf-button{
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border: none;
    font-family: opensans-bold;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    overflow: hidden;
    cursor: pointer;
    box-shadow: rgb(0 0 0 / 15%) 0px 4px 4px;
    border-radius: 4px;
    background-color: white;
    font-size: 16px;
    height: 48px;
    min-width: 48px;
    padding: 0px 32px;
}
.sf-button:hover {
    outline: none !important;
    box-shadow: rgb(0 0 0 / 25%) 0px 3px 10px;
}

.sf-input{
    height: 48px;
    background: rgb(244, 244, 244);
    padding: 0px 16px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid black;
    width: 100%;
    margin-bottom: 12px;
    outline: none !important;
}

textarea.sf-input{
    height:120px;
    padding-top: 16px;
}
.sf-modal-front{
    width: 90%;
    max-width: 540px;
    margin: 0 auto;
    -webkit-transition: 0.15s all;
    transition: 0.15s all;
    z-index: 20;
    background-color: white;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 25%);
    border-radius: 6px;
    position: relative;
    z-index: 61;

}

.sf-modal-body{
    padding: 48px 48px;
}

.sf-modal-bg{
    background-color: rgba(0, 0, 0, 0.15);
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sf-modal{
    position:
    fixed;
    z-index: 50;
    top:0;
    left:0;
    height:100%;
    width:100%;
    display:
    flex;
    justify-content:
    center;
    align-items:
    center;
}

.sf-subtitle{
    font-family: opensans-bold;
    text-transform: none;
    font-weight: 400;
    line-height: 1.1em;
    letter-spacing: -0.12px;
    font-size: 16px;
    margin-bottom: 24px;
}


element.style {
}
.sf-modal-close-btn {
    background-color: transparent;
    border: none;
    height: 40px;
    width: 40px;
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    opacity: 0.5;
    cursor: pointer;
}

.sf-modal-close-btn img{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 16px;
    min-width: 16px;
    max-height: 16px;
    max-width: 16px;
    height: 16px;
    width: 16px;
}

.sf-modal-footer{
    padding: 48px 0;
}

.sf-modal-close-btn:hover {
    opacity: 1;
}