/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 12 2024 | 08:58:45 */
@media screen and (min-width: 1024px) {
form.wpforms-form{
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* 设置表单字段容器为内联块 */
.wpforms-field-container {
    display: inline-block;
    vertical-align: top;
    width: 75% !important;; /* 容器占据75%的宽度 */
    white-space: nowrap; /* 确保子元素不换行 */
}

/* 设置提交按钮容器为内联块 */
.wpforms-submit-container {
    display: inline;
    width: 20% !important;; /* 容器占据20%的宽度 */
    margin-left: 5% !important; /* 左边距，确保与字段容器之间有间距 */
    margin-top: 0 !important;
    text-align: right; /* 提交按钮在容器内右对齐 */
}

/* 设置表单字段容器为内联块 */
.wpforms-field-container .wpforms-field {
    display: inline-block;
    vertical-align: top;
    width: calc(33.33% - 10px); /* 每个字段容器占一行的三分之一宽度，并减去左右边距 */
    margin-right: 15px;
    padding:10px 0 !important;
}

/* 移除第三个字段的右边距 */
.wpforms-field-container .wpforms-field:nth-child(3n) {
    margin-right: 0;
}

/* 设置第四个字段容器占据整行 */
.wpforms-field-container .wpforms-field:nth-child(4) {
    display: block;
    width: 100%;
    margin-right: 0;
}

/* 确保输入框充满容器 */
.wpforms-field-container .wpforms-field input {
    width: 100%;
    box-sizing: border-box;
}
}
@media screen and (min-width: 768px) {
/* 设置表单字段容器为内联块 */
.wpforms-field-container .wpforms-field {
    display: inline-block;
    vertical-align: top;
    width: calc(33.33% - 10px); /* 每个字段容器占一行的三分之一宽度，并减去左右边距 */
    margin-right: 15px;
    padding:10px 0 !important;
}

/* 移除第三个字段的右边距 */
.wpforms-field-container .wpforms-field:nth-child(3n) {
    margin-right: 0;
}

/* 设置第四个字段容器占据整行 */
.wpforms-field-container .wpforms-field:nth-child(4) {
    display: block;
    width: 100%;
    margin-right: 0;
}

/* 确保输入框充满容器 */
.wpforms-field-container .wpforms-field input {
    width: 100%;
    box-sizing: border-box;
}	
}

@media screen and (max-width: 1024px) {
	div.wpforms-container-full{
	margin-top:0 !important;
}
}
.wpforms-submit-container{
	 text-align: center;
}
button.wpforms-submit {
    max-width:200px;
    width: 100% !important;
    min-height: 50px !important;
    border-radius: 40px !important;
    color: black !important;
    font-size: 20px !important;
    background-color: #ffd65f !important;
    box-shadow: 0 1px 3px rgba(1, 1, 1, 0.5) !important;
}
#site-navigation-wrap .dropdown-menu >li >a, .oceanwp-mobile-menu-icon a{
    color: #191919 !important;
}
#site-logo .custom-logo-link{
    display: none !important;
}
#site-logo .sticky-logo-link{
    display: block !important;
}
