.hornet-nest-container {
    margin-top:60px;
}

.hornet-nest-container:first-child {
    margin-top:0;
}

.hornet-nest {
    display:flex;
    flex-wrap:wrap;
}

.hornet-nest .form-container {
    width:30%;
}

.hornet-nest .form-container .button-1 {
    background:var(--color-3);
}

.hornet-nest .form-container .button-1:hover {
    background:var(--color-2);
}

.hornet-nest .form-container .button-1 span {
    margin-left:0;
    margin-right:15px;
}

.hornet-nest .form-container .form {
    width:calc(100% - 2px);
    border-radius: 20px;
    overflow:hidden;
    border:1px solid var(--color-2);
    margin-top:50px;
}

.hornet-nest .form-container .form:first-child {
    margin-top:0;
    border:1px solid var(--color-3);
}

.hornet-nest .form .top {
    padding:20px;
    background:var(--color-2);
}

.hornet-nest .form:first-child .top {
    background:var(--color-3);
}

.hornet-nest .form .top dt {
    margin-bottom:10px;
}

.hornet-nest .form .top label {
    color:white;
    font-size:20px;
    line-height:24px;
    text-transform:uppercase;
    font-weight:700;
    text-align:center;
    width:100%;
    display:block;
}

.hornet-nest .form .top input {
    border:none;
    border-bottom:1px solid white;
    color:white;
    background:none;
    width:80%;
    margin-left:auto;
    margin-right:auto;
    padding:3px 0;
    font-size:16px;
    line-height:22px;
    display:block;
}

.hornet-nest .form .top input:focus-visible {
    outline:none;
}

.hornet-nest .form .top input::placeholder {
    color:white;
    font-style:italic;
    opacity:1;
}

.hornet-nest .form .content {
    padding:20px;
    background:white;
}

.hornet-nest .form .content .checkbox {
    --color: #5B8133;
    margin-top:5px;

    color: var(--color);
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}

.hornet-nest .form .content .checkbox:first-child {
    margin-top:0;
}

.hornet-nest .form .content .checkbox:before {
    content:"\f3c5";
    font-family:"Font Awesome 6 Free";
    font-size:20px;
    line-height:30px;
    width:30px;
    font-weight:600;
}

.hornet-nest .form .content .checkbox dt {
    order:2;
}

.hornet-nest .form .content .checkbox dd {
    order:1;
}

.hornet-nest .form .content .checkbox label {
    font-size: 17px;
    font-weight: 500;
    line-height: 35px;
    text-align: left;
    color:#000;
    margin-left:15px;
}

.hornet-nest .form .content button {
    position: relative;
    width: max-content;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    background: var(--color-2);
    color: white;
    border-radius: 30px;
    padding: 12px 22px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    display: block;
    width: max-content;
    border: 1px solid var(--color-2);
    cursor: pointer;
    text-transform: uppercase;
    transition-duration: .5s;
    transition-property: background;
}

.hornet-nest .form:first-child .content button {
    background: var(--color-3);
}

.hornet-nest .form .content #register-label {
    display:none;
}

.hornet-nest .form .content button:hover {
    color:var(--color-2);
    background:white;
}

.hornet-nest .form .content #year-label {
    display:none;
}

.hornet-nest .form .content select {
    border:none;
    border-bottom:1px solid var(--color-3);
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    line-height: 35px;
    text-align: left;
    color:#000;
    padding:5px 10px;
    background:none;
    width:calc(90% - 20px);
    margin-left:auto;
    margin-right:auto;
    display:block;
}

.hornet-nest .right-column {
    width:calc(70% - 40px);
    margin-left:40px;
    display:flex;
    flex-wrap:wrap;
}

.hornet-nest .liste-and-map {
    display:flex;
    flex-wrap:wrap;
}

.hornet-nest .liste-and-map .left {
    width:calc(100% - 100px);
}

.hornet-nest .liste-and-map .left .liste_entreprises {
    display:flex;
    flex-wrap:wrap;
}

article.hornet-nest-entry {
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius:20px;
    padding:25px;
    width:calc(((100% - 30px) / 2) - 50px);
    margin-left:30px;
    margin-top:30px;
    position:relative;
    background:white;
}

article.hornet-nest-entry > div > div > div > a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:block;
    z-index:4;
}

article.hornet-nest-entry:nth-child(2n + 1) {
    margin-left:0;
}

article.hornet-nest-entry:nth-child(-n + 2) {
    margin-top:0;
}

article.hornet-nest-entry > .fa {
    position:absolute;
    top:20px;
    right:20px;
    font-size:30px;
    color:#C50D2C;
}

.hornet-nest-details article.hornet-nest-entry > .fa {
    color:white;
    z-index:3;
    top:12px;
}

article.hornet-nest-entry .categorie {
  background: #C50D2C;
  color: black;
  padding: 2px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  border-radius:5px;
  width: max-content;
}

article.hornet-nest-entry .categorie > div {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  display: inline-block;
  height: 0;
  width: 0;
  border-top: 10px solid #C50D2C;
  border-left: 10px solid transparent;
  filter: brightness(0.8);
}

article.hornet-nest-entry h3 {
    text-align:left;
}

article.hornet-nest-entry h3 a {
    color:#C50D2C;
    font-size:20px;
    line-height:24px;
    font-weight:600;
    text-transform:uppercase;
    text-decoration:none;
    text-align:left;
}

article.hornet-nest-entry ul {
    padding-left:0;
    margin-top:18px;
}

article.hornet-nest-entry ul:first-child {
    margin-top:0;
}

article.hornet-nest-entry ul li {
    list-style:none;
    position:relative;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    color:#000000;
    margin-top:18px;
}

article.hornet-nest-entry ul li:first-child {
    margin-top:0;
}

article.hornet-nest-entry ul li > a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:5;
}

article.hornet-nest-entry ul li p {
    font-size:14px;
    line-height:21px;
    margin-top:0;
}

article.hornet-nest-entry ul li span {
    font-size:16px;
    line-height:21px;
    margin-right:10px;
    width:16px;
    text-align:center;
    color:#000000;
}

article.hornet-nest-entry .status .icon {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    background: var(--color);
}

article.hornet-nest-entry .create_modif_dates {
    margin-top:18px;
    color:#7d7d7d;
    font-size: 12px;
    font-style: italic;
    font-weight: 300;
    line-height: 18px;
}

article.hornet-nest-entry ul li.icon.weburl p {
    text-decoration:underline;
    color:#2793D1;
}

.hornet-nest .liste-and-map .hornet-nest-top-list {
    width:70px;
    margin-left:30px;
}

.hornet-nest .liste-and-map .hornet-nest-top-list .switch div {
    display:block;
    margin-top:10px;
    color:white;
    border-radius:10px;
    background:#555555;
    padding:15px;
    width:40px;
    height:40px;
    cursor:pointer;
    transition-duration: .5s;
    transition-property: background;
}

.hornet-nest .liste-and-map .hornet-nest-top-list .switch div.active, .hornet-nest .liste-and-map .hornet-nest-top-list .switch div:hover {
    background:var(--color-3);
}

.hornet-nest .liste-and-map .hornet-nest-top-list .switch div:first-child {
    margin-top:0;
}

.hornet-nest .liste-and-map .hornet-nest-top-list .switch div span {
    font-size:40px;
}

.map-container,
#hornet-nest-map-container {
    width:100%;
    height:600px;
}

.map,
#hornet-nest-map {
    height: 100%;
    width: 100%;
    z-index: 1;
}

.hornet-nest-details {
    display:flex;
    flex-wrap:wrap;
    margin-top:60px;
}

.hornet-nest-details:first-child {
    margin-top:0;
}

.hornet-nest-details article {
    width:calc(30% - 52px);
    overflow:hidden;
    box-shadow: 0px 4px 4px 0px #00000040;

}

.hornet-nest-details article > div > div > div > h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 25.5px;
    text-transform:uppercase;
    color:#000;
}

.hornet-nest-details article > div > div > div > .categorie {
    margin-top:20px;
}

.hornet-nest-details article > div > div > div > .categorie:first-child {
    margin-top:0;
}

.hornet-nest-details article > div > div > div > img {
    width:25%;
    margin-left:auto;
    margin-right:auto;
    display:block;
}

.hornet-nest-details article > div > div > div > h4 {
    font-size:18px;
    line-height:28px;
    font-weight:600;
    text-transform:none;
    margin-top:30px;
    margin-bottom:0;
    text-decoration:underline;
    color:#000;
}

.hornet-nest-details article > div > div > div > p {
    font-size:16px;
    line-height:22px;
    margin-top:10px;
}

.hornet-nest-details #hornet-nest-map {
    height: initial;
    min-height:500px;
    width: calc(70% - 30px);
    margin-left:30px;
}

.form-frelon {
    margin-top:50px;
}

.form-frelon .fa {
    color: var(--color-2);
    font-size: 30px;
    margin-right:12px;
}

.form-frelon h4 {
    color:#000;
}

.form-frelon h4 span {
    color:var(--color-2);
    width:34px;
    text-align:center;
    margin-right:12px;
}

.form-frelon .coordonnees-form {
    width:100%;
    max-width:700px;
}

.form-frelon .two_columns {
    display:flex;
    flex-wrap:wrap;
    margin-top:30px;
}

.form-frelon .two_columns:first-child {
    margin-top:0;
}

.form-frelon .two_columns > div {
    width:calc((100% - 35px) / 2);
    margin-right:35px;
}

.form-frelon .two_columns > div:nth-child(2n) {
    margin-right:0;
}

.form-frelon .form-and-map {
    margin-top:50px;
    display:flex;
    flex-wrap:wrap;
}

.form-frelon .form-and-map:first-child {
    margin-top:0;
}

.form-frelon .form-and-map .side-form {
    width:40%;
}

.form-frelon .form-and-map .map {
    width:calc(60% - 40px);
    margin-left:40px;
}

.form-frelon dt {
    display:none;
}

.form-frelon input[type=text], .form-frelon textarea, .form-frelon select {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    text-align: left;
    padding:7px 13px;
    background:var(--color-4);
    color:#000;
    width:calc(100% - 26px);
    border-radius:10px;
    border:none;
    box-sizing: unset;
}

.form-frelon textarea {
    height:200px;
}

.form-frelon .form-element {
    margin-top:30px;
}

.form-frelon .form-element:first-child {
    margin-top:0;
}

.form-frelon .submit-element {
    margin-top:60px;
}

.form-frelon .submit-element input {
    font-size: 15px;
    font-weight: 600;
    line-height: 22.5px;
    text-align: center;
    color:#fff;
    padding:8px 30px;
    padding-right:60px;
    width:max-content;
    max-width:100%;
    display:block;
    margin-left:auto;
    margin-right:auto;
    background:var(--color-3);
    text-transform:uppercase;
    border-radius:39px;
    border:none;
    cursor:pointer;
    transition-duration: .5s;
    transition-property: background;
}

.form-frelon .submit-element input:hover {
    background:var(--color-2);
}

.form-frelon .submit-element #submit-element {
    position:relative;
    width:max-content;
    max-width:calc(100% - 20px);
    display:block;
    margin-left:auto;
    margin-right:auto;
}

.form-frelon .submit-element #submit-element:after {
    position:absolute;
    top:9px;
    right:30px;
    content:"\f1d8";
    font-family:"Font Awesome 6 Free";
    color:white;
    font-size:20px;
    line-height:20px;
    font-weight:600;
}

.form-frelon .form-element #photos-element input {
    display:block;
    margin-top:20px;
}

@media all and (max-width:1400px) {
    .hornet-nest .form-container {
        width:25%;
    }

    .hornet-nest .right-column {
        width:calc(75% - 40px);
    }

    .hornet-nest .form form .content .categories {
        margin-left:0;
    }
}

@media all and (max-width:1200px) {
    .hornet-nest .form form .content .section_categorie span.logo {
        width:25px;
        font-size: 20px;
        line-height: 20px;
    }

    .hornet-nest .form form .content .section_categorie p {
      font-size: 16px;
      line-height: 20px;
    }

    .hornet-nest .form form .content .section_categorie span {
        line-height: 20px;
    }

    .hornet-nest .liste-and-map .left {
        width:calc(100% - 70px);
    }

    .hornet-nest .liste-and-map .hornet-nest-top-list {
        width:50px;
        margin-left:20px;
    }

    .hornet-nest .liste-and-map .hornet-nest-top-list .switch div {
        width:30px;
        height:30px;
        padding:10px;
    }

    .hornet-nest .liste-and-map .hornet-nest-top-list .switch div span {
      font-size: 30px;
    }
}

@media all and (max-width:992px) {
    .hornet-nest {
        flex-direction:column;
    }

    .hornet-nest .form-container {
        width:100%;
    }

    .hornet-nest .right-column {
        width:100%;
        margin-top:40px;
        margin-left:0;
        flex-direction:column;
    }

    .hornet-nest .liste-and-map .hornet-nest-top-list {
        order:1;
        width:100%;
        margin-left:0;
    }

    .hornet-nest .liste-and-map .hornet-nest-top-list .switch {
        display:flex;
        flex-wrap:wrap;
    }

    .hornet-nest .liste-and-map .hornet-nest-top-list .switch div {
        margin-left:10px;
        margin-top:0;
    }

    .hornet-nest .liste-and-map .hornet-nest-top-list .switch div:first-child {
        margin-left:0;
    }

    .hornet-nest .liste-and-map .left {
        width:100%;
        order:2;
        margin-top:40px;
    }

    article.hornet-nest-entry {
        width:calc(100% - 42px);
        margin-left:0;
    }

    article.hornet-nest-entry:nth-child(-n + 2) {
        margin-top:30px;
    }

    article.hornet-nest-entry:first-child {
        margin-top:0;
    }

    .hornet-nest-details #hornet-nest-map {
        width:100%;
        margin-left:0;
        margin-top:40px;
    }

    .form-frelon .form-and-map {
        display:block;
    }

    .form-frelon .form-and-map .side-form {
        width:100%;
    }

    .form-frelon .form-and-map .map {
        width:100%;
        margin-left:0;
        margin-top:50px;
        height:600px;
    }
}

@media all and (max-width:600px) {
    .form-frelon .two_columns {
        display:block;
    }

    .form-frelon .two_columns > div {
        width:100%;
        margin-right:0;
        margin-top:30px;
    }

    .form-frelon .two_columns > div:first-child {
        margin-top:0;
    }
}