.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    z-index: 10;
}

.hide {
    visibility: hidden;
}

.cta {
    position: relative;
    margin: auto;
    padding-left: 20px;
    padding-right: 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    overflow: hidden;
    background: #075E54;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
   
.cta div {
    position: relative;
    display: flex;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #075E54;
}

.cta div span {
    white-space: nowrap;
    transition: all .1s ease;
}

.cta div img {
    height: 30px;
}
   
.cta:hover {
    width: 100%;
    background: #00a783;
}

.cta:hover div span {
    display: block;
    margin-left: 10px;
    color: #ffffff;
    transition: all .2s ease;
}

.cta:active {
    transform: scale(0.95);
}


/* card */

.crd {
    position: fixed;
    bottom: 20px;
    font-family: sans-serif;
    width: 300px;
    height: 0;
    background: #f4f4f4;
    border: #00a783 1px solid;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
    visibility: hidden;
    white-space: nowrap;
    z-index: 10;
    transition: all 0.5s;
}

.crd-active {
    height: 460px;
    visibility: visible;
    transition: all 0.5s;
}

.crd .crd-title {
    padding: 10px 20px;
    background: #00a783;
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.crd .crd-title img {
    height: 20px;
    margin-right: 10px;
}

.crd .crd-title .close {
    font-family: Verdana, sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin-left: auto;
    cursor: pointer;
}

.crd .crd-content {
    padding: 10px 25px 20px 25px;
}

.crd .crd-content span {
    font-size: 13px;
    color: #5e5e5e;
    display: block;
    margin-bottom: 10px;
    word-spacing: 2px;
}

.crd .crd-content .wrapper{
    white-space: normal;
}

.crd .crd-content .crd-content-title {
    font-size: 18px;
    color: #424242;
    margin-bottom: 10px;
    font-weight: bold;
    padding-top: 5px;
}

.crd .crd-content form label {
    display: block;
    font-size: 14px;
    color: #424242;
    font-weight: bold;
    margin-top: 20px;
    width: 100%;
}


.crd .crd-content form div{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.crd .crd-content form div input {
    width: 100%;
    background: transparent;
    padding: 5px 0;
    margin: 0;
    border: none;
    border-bottom: #d3d3d3 1px solid;
    transition: all 0.5s;
    color: #5e5e5e;
}

.crd .crd-content form div input:focus {
    outline: none;
    border-bottom: #00a783 1px solid;
    transition: all 0.5s;
}

.crd .crd-content form .whNumberContainer {
    display: flex;
    flex-direction: row;
}

.crd .crd-content form .whNumberContainer .lada {
    width: auto;
    height: 100%;
    margin-right: 15px;
    padding: 10px 0;
}

.crd .crd-content form div select {
    width: 100%;
    background: transparent;
    padding: 5px 0;
    margin: 0;
    border: none;
    border-bottom: #d3d3d3 1px solid;
    transition: all 0.5s;
    color: #5e5e5e;
}

.crd .crd-content form div select:focus {
    outline: none;
    border-bottom: #00a783 1px solid;
    transition: all 0.3s ease;
}

.crd .crd-content form div button {
    width: 100%;
    background: #00a783;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 50px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.crd .crd-content form div button:hover {
    background: #00e676;
    transition: all 0.3s ease;
}