.profile .registerSection:not(:first-child) {
    padding: 0 0 1rem;
}

.headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 20px;
}

.headline h4 {
    font-weight: 700;
    font-size: 3rem;
    margin: 0;
}

.profile .userProfile .userInformation {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
}

.profile .userProfile .userInformation .userData ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    list-style: none;
}

.profile .userProfile .userInformation .userData ul li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 5px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111;
}

.profile .userProfile .userInformation .userData ul li:last-of-type {
    grid-template-columns: 1fr;
}

.profile .userProfile .userInformation .userData ul li a {
    background-color: var(--theme-color);
    color: #fff;
    text-align: center;
    padding: 5px 0;
}

.profile .userProfile .userInformation .imgPlaceholer {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.profile .userProfile .userInformation .imgPlaceholer img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.profile .userProfile .userInformation .imgPlaceholer div {
    display: inline-block;
    padding: 5px;
    border-radius: 50%;
    border: 5px solid var(--theme-color);
}

.profile .userProfile .userInformation .imgPlaceholer p {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--theme-color);
    margin: 20px 0 0;
}

.profile .links section {
    padding-bottom: 2rem;
}

.profile .links .requests {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
    align-items: stretch;
}

.profile .links .linksSplitter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    align-items: stretch;
}

.btnCard {
    display: block;
    border: 1px solid #eee;
    outline: none;
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 25px;
    transition: 0.3s all ease-in-out;
}

.btnCard:hover {
    box-shadow: 5px 5px 5px #0000000c;
}

.btnCard:hover * {
    color: var(--theme-color);
}

.btnCard i {
    font-size: 5rem;
    color: #333;
    margin-bottom: 1rem;
    transition: 0.3s color ease-in-out;
}

.btnCard p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    transition: 0.3s color ease-in-out;
}

.profile .orders .ordersViewer {
    margin-bottom: 2rem;
}

.profile .orders .ordersViewer .order {
    display: grid;
    grid-template-columns: 200px repeat(5, 1fr);
    align-items: center;
    gap: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 5px #0000000d;
    border: 2px solid #eee
}

.profile .orders .ordersViewer .order:not(:last-of-type) {
    margin-bottom: 20px;
}

.profile .orders .ordersViewer .imgContainer img {
    width: 200px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
}

.profile .orders .ordersViewer .order p {
    margin: 0;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.profile .orders .ordersViewer .order p.head {
    margin: 0;
    font-weight: 500;
    color: #777;
    text-align: center;
}

.profile .orders .ordersViewer .order .locationInfo p {
    text-align: right;
}

.profile .orders .ordersViewer .order .locationInfo p.locName {
    font-size: 1.5rem;
}

.profile .orders .ordersViewer .order .locationInfo p.locLocation {
    font-size: 1rem;
    font-weight: 300;
}

.profile .orders .ordersViewer .order .locationInfo p.locLocation i {
    margin-inline-end: 10px;
}

.ordedControls {
    text-align: center;
    padding: 0 0 10px 0;
}

.ordedControls button,
.ordedControls a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 10px;
    margin: 0;
    padding: 0;
}

.ordedControls button::before,
.ordedControls a::before {
    content: attr(alt);
    position: absolute;
    top: -50%;
    opacity: 0;
    background-color: #000000ca;
    color: #fff;
    border-radius: 10px;
    white-space: nowrap;
    padding: 5px 10px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
    transition: 0.3s all ease-in-out;
}

.ordedControls button:hover::before,
.ordedControls a:hover::before {
    top: -100%;
    opacity: 1;
    z-index: 3;
}

.cancel {
    background-color: rgb(245, 9, 48);
    color: #fff;
    margin: 0 5px!important;

}

a.preview {
    background-color: #198754;
    color: #fff;
    margin: 0 5px;
}
a.pay {
    background-color: #481091;
    color: #fff;
    margin: 0 5px;
    width: 100px!important;
    height: 44px!important;
}

a.order_details {
    background-color: #481091;
    color: #fff;
    margin: 0 5px;
    width: 40px!important;
    height: 40px!important;
}
.block_user {
    background-color: #ff0515;
    color: #fff;
    margin: 0 5px;
    width: 40px!important;
    height: 40px!important;
}
.unblock_user {
    background-color: #2bce00;
    color: #fff;
    margin: 0 5px;
    width: 40px!important;
    height: 40px!important;
}
.block_status {
    background-color: #be040f;
    color: #fff;
    padding: 5px 14px;
    border-radius: 10px 0 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    font-weight: 700;
}
a.order_rate {
    background-color: #0095ff;
    color: #fff;
    margin: 0 5px;
    width: 40px!important;
    height: 40px!important;
}

.contract {
    background-color: rgb(245, 174, 9);
    color: #000;
    margin: 0 5px!important;

}

td {
    /*padding: 10px;*/
    /*background-color: blue;*/
}

td span {
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*background-color: red;*/
    height: 100%;
}

@media (width <=780px) {


    .profile .links .linksSplitter {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile .userProfile .userInformation .userData ul {
        grid-template-columns: 1fr;
    }

    .profile .orders .ordersViewer .order {
        grid-template-columns: none;
        grid-template-areas:
            "img info info"
            "img status host"
            "img stage control";
        gap: 10px;
    }

    .profile .orders .ordersViewer .order .locationInfo {
        grid-area: info;
    }

    .profile .orders .ordersViewer .order .imgContainer,
    .profile .orders .ordersViewer .order .imgContainer img {
        grid-area: img;
        height: 100%;
    }

    .profile .orders .ordersViewer .order .status.statue {
        grid-area: status;
    }

    .profile .orders .ordersViewer .order .status.host {
        grid-area: host;
    }

    .profile .orders .ordersViewer .order .status.stage {
        grid-area: stage;
    }

    .profile .orders .ordersViewer .order .status.ctrl {
        grid-area: control;
    }

    .profile .orders .ordersViewer .order .status p,
    .profile .orders .ordersViewer .order .status div {
        text-align: right;
    }
}

@media (width <=450px) {
    .profile .orders .ordersViewer .order {
        grid-template-columns: none;
        grid-template-areas:
            "img img"
            "info info"
            "status host"
            "stage control";
    }


    .profile .orders .ordersViewer .order .locationInfo {
        text-align: center;
    }

    .profile .orders .ordersViewer .order .locationInfo>div {
        display: inline-block;
        background-color: #fff;
        border-radius: 10px;
        margin-top: -80px;
        padding: 5px 20px;
        width: 70%;
    }

    .profile .orders .ordersViewer .order .locationInfo p {
        text-align: center;
    }

    .profile .orders .ordersViewer .order .imgContainer img {
        width: 100%;
        margin-bottom: 20px;
    }

    .profile .orders .ordersViewer .order .status p,
    .profile .orders .ordersViewer .order .status div {
        text-align: center;
    }

    .profile .orders .ordersViewer .order .imgContainer {
        text-align: center;
    }

    .profile .userProfile .userInformation {
        grid-template-columns: 1fr;
        padding: 5rem 0rem 1rem;
        overflow: visible;
    }

    .profile .userProfile .userInformation .imgPlaceholer {
        position: relative;
        margin-bottom: 20px;
    }

    .profile .userProfile .userInformation .imgPlaceholer div {
        position: absolute;
        top: -150px;
        background-color: #fff;
        z-index: 10;
    }

    .profile .links .linksSplitter {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (width <=350px) {

    .profile .orders .ordersViewer .order {
        grid-template-columns: none;
        grid-template-areas:
            "img"
            "info"
            "status"
            "host"
            "stage"
            "control";
    }

    .profile .userProfile .userInformation .userData ul li {
        grid-template-columns: 1fr;
        text-align: right;
    }

    .profile .userProfile .userInformation .userData ul li span:last-of-type {
        text-align: left;
        margin: 5px 0;
    }


    .profile .links .requests {
        grid-template-columns: repeat(1, 1fr);
    }

}
#terms_table {
    font-family: 'Cairo', sans-serif!important;
}

#terms_table span {
    font-family: 'Cairo', sans-serif!important;
    line-height: 23px;
}

#terms_table td {
    padding: 15px 20px;
}

.address_a {
    padding: 0!important;
    font-size: inherit!important;
    border: none!important;
    background-color: inherit!important;
    color: #000!important;
    font-weight: bold!important;
}
