.popup-open {
   cursor: pointer;
}



.popup-fade {
    display: none;
    background: #000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22,22,22,0.5);
    z-index: 9999;
}

.popup {
    position: relative;
    top: 25%;
    width: 360px;
    background: #fff;
    z-index: 99999;
    opacity: 1;
    display: flex;
    padding: 42px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 14px;
    min-height: 527px;
    min-width: 790px;
    margin: 0 auto;
}


.popup.auto {
  min-height: fit-content;
}

.popup.auto .popup-wrapp{
     min-height: fit-content;
}

.popup.right {
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    border-radius: 0;
}

.popup.right .close {

    top: 11px;
    right: auto;
    left: -38px;
}

.close {
    position: absolute;
    top: -37px;
    right: 0px;
}


.popup-body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
}

.popup-head{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.popup-head .panel{
    position: absolute;
    display: flex;
    width: fit-content;
    gap: 10px;
    flex-direction: row;
    right: 0px;
}

.popup-head .panel .btn {

    display: inline-flex;
    padding: 9px 16px;
    align-items: flex-start;
    gap: 3px;
    border-radius: 20px;
    background: #F5F5F5;
    color: #494C51;
    text-align: center;


    font-family: Gotham Pro;
    font-weight: 400;
    font-style: Regular;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: 0%;


}

.popup-head .panel .btn.active {
  color: #E63912;
  background-color: #FFF9F7;
}

.popup-head .panel .btn.active:hover {
     background: #c3c5c7;
}

.popup-head .panel .btn:hover {
    background: #c3c5c7;
}
    

.popup-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.popup-footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


.popup-body .flex-row.start {
    align-items: flex-start;
}
.popup-body .flex-row {
    display: flex;
    flex-direction: row;
}


.popup-body  .flex-row.end {
    align-items: flex-end;
}

.popup-body .btn-round{
    display: inline-flex;
    padding: 19px 24px;
    align-items: flex-start;
    gap: 3px;
    border-radius: 30px;
    background: #F5F5F5;

    color: #494C51;
    text-align: center;
    font-family: "Gotham Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 21.6px */
}

.popup-body .btn-round:hover{
    background: #d9d9d9;
}

.popup-body .btn-round.red {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFF;
    font-family: "Gotham Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    border-radius: 32px;
    background: #E63912;
}

.popup-wrapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
        min-height: 380px;
}

.popup-body .btn-round.red:hover {
    background: #d23410;
}

.popup-body h1{
    color: #252C37;
    font-family: "Gotham Pro";
    font-size: 29px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 34.8px */
}


.popup-fade.modal{
    position: absolute;
}

.popup-fade.modal .popup{
        min-width: 92%;
}

.popup-fade.modal .popup .popup-body {
    overflow-y: scroll;
    padding: 0px 0px;
}

.popup-fade.modal .popup .popup-body .data{
    width: 100%;
}

.popup-fade.modal .popup .popup-body .popup-wrapp {
    display: flex;
    gap: 10px;
}

.popup-fade.modal .popup-body .popup-wrapp .popup-head {
    margin-bottom: 10px;
}

.search-form{
    width: 100%;
}

