/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
.guestbook-area > *,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}
a{
    text-decoration: none;
}*/
.traywrap a{
    text-decoration: none!important;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.guestbook-area ul>li{
  list-style: none;
}
.guestbook-area .form-col-1-1{
  width: 100%;
  float: left;
  margin-bottom: 10px;
}
.guestbook-area .form-col-2-1{
  width: calc(50% - 16px);
  margin: 8px;
}

.guestbook-area input:focus,.guestbook-area textarea:focus,.guestbook-area select:focus{
  outline: none;
}

.guestbook-area input,.guestbook-area textarea,.guestbook-area button{
  width: 100%;
  padding: 10px;
  border: 1px solid #767677;
  border-radius: 3px;
  background: transparent;
  color: #ABA8AC;
}
.guestbook-area textarea{
  min-height: 100px;
  resize: none;
}
.guestbook-area button{
  border: 1px solid #767677;
  border-radius: -1px;
  width: auto;
  cursor: pointer;
  padding: 6px 43px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 20px;
  background: #3F3B40;
  margin-top: 10px;
  border-radius: 4px;
}
.required{
  color: red;
}

div#guestbook-wrapper {
    background: #181619;
    display: table;
    width: 100%;
    height: 100%;
}
.guestbook-area {
    width: 600px;
    margin: auto;
    margin-top: 50px;
}

.guestbook-title h3 {
    color: #A19EA2!important;
    font-size: 32px;
    margin-bottom: 18px;
    font-weight: 500;
    font-family: 'Playfair Display'!important;
    font-weight: 700!important;
    /*color: white;*/

}
.comments-display-area {
    width: 100%;
    margin-top: 20px;
    display: flex;
    border-top: 1px solid #767677;
    padding-top: 20px;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.single-comments {
    background: #302D31;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 1px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    font-family: sans-serif;
}

.single-comments .comment-text {
    font-size: 15px;
    margin-top: 1px;
    color: #B2B1B3;
    letter-spacing: .5px;
}

.single-comments .commenter-name {
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 4px;
    font-size: 12px;
    color: #EEEEEE;
}
.comments-wrap {
    overflow: scroll;
    padding: 1px;
    overflow-x: hidden;
    margin: 0px;
    padding-bottom: 26px;
}

.comments-wrap::-webkit-scrollbar {
display: none;
}
.comments-wrap {
-ms-overflow-style: none;
scrollbar-width: none;
}
.comment-col-row {
    display: flex;
    justify-content: space-between;
}

.comment-col-row .comment-date {
    font-size: 13px;
    color: #757376;
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #ABA8AC !important;
}